Skip to main content
GET
/
jobs
/
{job_id}
Get job
curl --request GET \
  --url https://api.bedrock.cv/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "job_01JABCD123",
    "organization_id": "org_01JABCD123",
    "project_id": "prj_01JABCD123",
    "type": "overlay.generate",
    "status": "COMPLETED",
    "target_type": "Block",
    "target_id": "blk_01JABCD123",
    "parent_id": null,
    "payload": {
      "type": "Block",
      "old_id": "blk_01JABCD100",
      "new_id": "blk_01JABCD200"
    },
    "events": [
      {
        "status": "PENDING",
        "timestamp": "2024-06-17T08:55:00Z"
      },
      {
        "status": "RUNNING",
        "timestamp": "2024-06-17T08:55:02Z"
      },
      {
        "status": "COMPLETED",
        "timestamp": "2024-06-17T08:56:30Z"
      }
    ],
    "created_at": "2024-06-17T08:55:00Z",
    "updated_at": "2024-06-17T08:56:30Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.bedrock.cv/llms.txt

Use this file to discover all available pages before exploring further.

Returns the full details for a job, including status history and payload.

Authorizations

Authorization
string
header
required

API key prefixed with sk_. Example: Authorization: Bearer sk_xxx

Headers

X-API-Version
string
default:2026-01-01

API version

Path Parameters

job_id
string
required

Job ID

Response

Success

data
object
Example:
{
  "id": "job_01JABCD123",
  "organization_id": "org_01JABCD123",
  "project_id": "prj_01JABCD123",
  "type": "overlay.generate",
  "status": "COMPLETED",
  "target_type": "Block",
  "target_id": "blk_01JABCD123",
  "parent_id": null,
  "payload": {
    "type": "Block",
    "old_id": "blk_01JABCD100",
    "new_id": "blk_01JABCD200"
  },
  "events": [
    {
      "status": "PENDING",
      "timestamp": "2024-06-17T08:55:00Z"
    },
    {
      "status": "RUNNING",
      "timestamp": "2024-06-17T08:55:02Z"
    },
    {
      "status": "COMPLETED",
      "timestamp": "2024-06-17T08:56:30Z"
    }
  ],
  "created_at": "2024-06-17T08:55:00Z",
  "updated_at": "2024-06-17T08:56:30Z"
}