Convert documents (PDFs, Images, ...) to plain text
Creates a Raw Extraction Job
POSThttps://waveline.ai/api/v1/raw-extract
Creates a new job that converts documents into plain text.
Headers
Name
Type
Description
Content-Type
String
Should be application/json.
Authorization*
String
Bearer <YOUR_API_KEY>
Request Body
Name
Type
Description
contentUrl*
String
A URL pointing to your data. (e.g. https://example.com/invoice.pdf)
{
"id": string,
"createdAt": string,
"status": "CREATED",
"type": "raw-extract",
"message": string,
"pages": number, // Number of billed pages in this job
"fileName": string,
"result": null, // Is null after creation
"urls": {
"get": string; // Query this URL to get the status/result of your job
}
}