jobs
- GET
/v1/jobsList jobs.
Standard JSON response. Authenticated with an API key scoped to your tenant. Rate limits and pagination apply.
Examplecurl -H "Authorization: Bearer $JINZAI_API_KEY" "https://api.jinzai.dev/v1/jobs"
- POST
/v1/jobsCreate a job (status defaults to draft).
Standard JSON response. Authenticated with an API key scoped to your tenant. Rate limits and pagination apply.
Examplecurl -H "Authorization: Bearer $JINZAI_API_KEY" "https://api.jinzai.dev/v1/jobs"
- GET
/v1/jobs/{id}Fetch a job with intelligence.
Standard JSON response. Authenticated with an API key scoped to your tenant. Rate limits and pagination apply.
Examplecurl -H "Authorization: Bearer $JINZAI_API_KEY" "https://api.jinzai.dev/v1/jobs/{id}" - PATCH
/v1/jobs/{id}Update job fields.
Standard JSON response. Authenticated with an API key scoped to your tenant. Rate limits and pagination apply.
Examplecurl -H "Authorization: Bearer $JINZAI_API_KEY" "https://api.jinzai.dev/v1/jobs/{id}" - POST
/v1/jobs/{id}/publishPublish a draft job.
Standard JSON response. Authenticated with an API key scoped to your tenant. Rate limits and pagination apply.
Examplecurl -H "Authorization: Bearer $JINZAI_API_KEY" "https://api.jinzai.dev/v1/jobs/{id}/publish" - POST
/v1/jobs/{id}/closeClose a job.
Standard JSON response. Authenticated with an API key scoped to your tenant. Rate limits and pagination apply.
Examplecurl -H "Authorization: Bearer $JINZAI_API_KEY" "https://api.jinzai.dev/v1/jobs/{id}/close"

