Skip to main content
GET
/
v1
/
ade
/
parse
/
jobs
cURL
curl -X GET 'https://api.va.landing.ai/v1/ade/parse/jobs' \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "jobs": [
    {
      "job_id": "<string>",
      "status": "<string>",
      "received_at": 123,
      "progress": 0.5,
      "failure_reason": "<string>"
    }
  ],
  "org_id": "<string>",
  "has_more": false
}

Authorizations

Authorization
string
header
required

Your unique API key for authentication.

Get your API key here: https://va.landing.ai/settings/api-key.

If using the EU endpoint, get your API key here: https://va.eu-west-1.landing.ai/settings/api-key.

Query Parameters

page
integer
default:0

Page number (0-indexed)

Required range: x >= 0
pageSize
integer
default:10

Number of items per page

Required range: 1 <= x <= 100
status
enum<string> | null

Filter by job status.

Available options:
cancelled,
completed,
failed,
pending,
processing

Response

Successful Response

Response for listing jobs.

jobs
JobSummary · object[]
required
org_id
string | null
has_more
boolean
default:false
I