GET
/
api
/
v1
/
document-extractions
/
{workflowName}
curl --request GET \
  --url https://api.repromptai.com/api/v1/document-extractions/{workflowName} \
  --header 'Authorization: Bearer <token>'
[
  {
    "file_id": "file_12345",
    "job_id": "job_12345",
    "organizationId": "org_12345",
    "status": "extracted",
    "createdAt": "2023-01-01T00:00:00Z",
    "updatedAt": "2023-01-02T00:00:00Z",
    "file_metadata": "{\"pdf_type\": \"invoice\"}"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflowName
string
required

Query Parameters

status
enum<string>

Filter jobs by status

Available options:
pending,
pending_type_identified,
pending_type_unknown,
extraction_running,
extracted,
extracted_formatted,
extracted_formatted_and_validated,
failed
Example:

"pending"

pdf_type
string

Filter jobs by PDF type

Response

200
application/json
A list of jobs
file_id
string

The unique identifier for the file

job_id
string | null

The unique identifier for the job

organizationId
string

The organization ID

status
enum<string>

The status of the job

Available options:
pending,
pending_type_identified,
pending_type_unknown,
extraction_running,
extracted,
extracted_formatted,
extracted_formatted_and_validated,
failed
Example:

"pending"

createdAt
string

The creation timestamp

updatedAt
string

The last update timestamp

file_metadata
object | null

Metadata associated with the file

extraction
object | null

Extraction details