List Bulk Jobs
Last updated: December 17, 2025
This endpoint allows you to list your Bulk Jobs.
Endpoint
| URL | Method |
|---|---|
| https://api.intricately.com/api/v2/bulk_jobs | GET |
Code Examples
cURL
curl -XGET https://api.intricately.com/api/v2/bulk_jobs
-H "X-API-KEY:"
#Response:
{
results: [
{
"status": "processing",
"job_id": "" ,
"created_at": "2018-03-20T11:07:20-04:00"
},
{
"status": "ready",
"job_id": "" ,
"created_at": "2018-03-20T11:07:20-04:00"
},
{
"status": "processing",
"job_id": "" ,
"created_at": "2018-03-20T11:07:20-04:00"
}
],
total: 3,
page: 1,
result_count: 3
}
Python
headers = { 'X-API-KEY': }
r = requests.get("https://api.intricately.com/api/v2/bulk_jobs", headers=headers)
json_response = r.json()
#Response:
{
jobs: [
{
"status": "submitted",
"job_id": "",
"created_at": "2018-03-20T11:07:20-04:00"
},
{
"status": "completed",
"job_id": "",
"created_at": "2018-03-20T11:07:20-04:00"
},
{
"status": "submitted",
"job_id": "",
"created_at": "2018-03-20T11:07:20-04:00"
}
]
}
Ruby
headers = { "X-API-KEY" => <YOUR_API_KEY>, content_type: :json, accept: :json }
payload = ['nike', 'macy-s', 'netflix']
RestClient.get "https://api.intricately.com/api/v2/bulk_jobs", headers
#Response:
{
jobs: [
{
"status": "submitted",
"job_id": "" ,
"created_at": "2018-03-20T11:07:20-04:00"
},
{
"status": "completed",
"job_id": "" ,
"created_at": "2018-03-20T11:07:20-04:00"
},
{
"status": "submitted",
"job_id": "" ,
"created_at": "2018-03-20T11:07:20-04:00"
}
]
}