Get Bulk Job Status

Last updated: December 17, 2025

This endpoint allows you to get the status of a Bulk Job.

Endpoint

URL Method
https://api.intricately.com/api/v2/bulk_jobs/ GET
 

Parameters

Parameter Description
job_id ID of the Bulk Job
 

Code Example

cURL

curl -XGET https://api.intricately.com/api/v2/bulk_jobs/ 
-H "X-API-KEY: "

#Response:
{
"status": "completed",
"job_id": "",
"created_at": "2018-03-20T11:07:20-04:00"
}

Python

headers = { 'X-API-KEY': <YOUR_API_KEY> } 

r = requests.get("https://api.intricately.com/api/v2/bulk_jobs/", headers=headers)
json_response = r.json()

#Response:
{
"status": "completed",
"job_id": "",
"created_at": "2018-03-20T11:07:20-04:00"
}

Ruby

headers = { "X-API-KEY" => <YOUR_API_KEY>, content_type: :json, accept: :json } 

RestClient.get "https://api.intricately.com/api/v2/bulk_jobs/", headers

Response:
{
"status": "completed",
"job_id": "",
"created_at": "2018-03-20T11:07:20-04:00"
}