cURL
curl 'https://api.ade.landing.ai/v2/parse/jobs' \
-H 'Authorization: Bearer YOUR_API_KEY'import requests
url = 'https://api.ade.landing.ai/v2/parse/jobs'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
response = requests.get(url, headers=headers)
print(response.json())const axios = require('axios');
axios.get('https://api.ade.landing.ai/v2/parse/jobs', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
})
.then(response => console.log(response.data))
.catch(error => console.error(error));{
"jobs": [
{
"job_id": "<string>",
"received_at": 123,
"created_at": 123,
"progress": 123,
"failure_reason": "<string>"
}
],
"org_id": "<string>",
"has_more": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Parse
ADE List Parse Jobs
GET
/
v2
/
parse
/
jobs
cURL
curl 'https://api.ade.landing.ai/v2/parse/jobs' \
-H 'Authorization: Bearer YOUR_API_KEY'import requests
url = 'https://api.ade.landing.ai/v2/parse/jobs'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
response = requests.get(url, headers=headers)
print(response.json())const axios = require('axios');
axios.get('https://api.ade.landing.ai/v2/parse/jobs', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
})
.then(response => console.log(response.data))
.catch(error => console.error(error));{
"jobs": [
{
"job_id": "<string>",
"received_at": 123,
"created_at": 123,
"progress": 123,
"failure_reason": "<string>"
}
],
"org_id": "<string>",
"has_more": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Query Parameters
Page number (0-indexed).
Required range:
x >= 0Number of items per page.
Required range:
1 <= x <= 100Filter by job status.
Was this page helpful?
⌘I