v1

latestOpenAPI 3.1.02026-07-222064110.7 KB
Parse

ADE Get Parse Jobs

Get the status of an async parse job. Once the job has completed, result carries the parse response (or output_url when output_save_url was set). Partial success (some pages failed) is reported in result.metadata.failed_pages.

get/v2/parse/jobs/{job_id}

Path parameters

job_idstring required

The identifier of the job to retrieve, as returned by the create-job request.

The identifier of the job to retrieve, as returned by the create-job request.

Response

Job status / result

job_idstring

The unique identifier for this parse job. Format: <service>-<26-character Crockford base32 ULID> matching ^(parse|extract)-[0-9a-hjkmnp-tv-z]{26}$. Opaque, server-minted, and stable for the life of the job — the same id is returned on the sync response, the async 202, and every poll. Treat it as opaque; older id formats remain accepted indefinitely and are never re-issued.

status'pending' | 'processing' | 'completed' | 'failed'

The job's current status: pending, processing, completed, or failed.

created_atstring nullable

ISO-8601 timestamp for when the job was created.

completed_atstring

ISO-8601 timestamp; present once the job is terminal.

progressnumber

Job completion as a decimal from 0 (not started) to 1 (complete). Present while processing.

output_urlstring nullable

The URL the result was delivered to. Present once the job has completed and output_save_url was set, instead of inline result.