Skip to main content
GET
/
api
/
v1
/
catalog
/
jobs
List recent catalog jobs
curl --request GET \
  --url https://api.example.com/api/v1/catalog/jobs \
  --header 'Authorization: Bearer <token>'
[
  {
    "job_id": "<string>",
    "tenant_id": "<string>",
    "status": "<string>",
    "total": 0,
    "embedded": 0,
    "created": 0,
    "updated": 0,
    "unchanged": 0,
    "errors": [],
    "started_at": "<string>",
    "completed_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

job_id
string
required

Unique job identifier

tenant_id
string
required

Tenant that owns this job

status
string
required

Job status: pending, embedding, complete, or failed

total
integer
default:0

Total number of products in this job

embedded
integer
default:0

Number of products successfully embedded so far

created
integer
default:0

Number of new products created

updated
integer
default:0

Number of existing products updated

unchanged
integer
default:0

Number of products skipped (content unchanged)

errors
string[]

List of error messages for failed products

started_at
string | null

Timestamp when embedding started (ISO 8601)

completed_at
string | null

Timestamp when the job finished (ISO 8601)