EccoAPIeccoapi
GET/api/v1/jobs/:jobId

Job Status API

Check the status and retrieve results of your asynchronous image generation jobs.

Get Job Status

bash
curl https://eccoapi.com/api/v1/jobs/YOUR_JOB_ID \
  -H "Authorization: Bearer nk_live_your_api_key"

Response Format

json
{
  "code": 200,
  "jobId": "a1b2c3d4...",
  "status": "completed",
  "result": {
    "code": 200,
    "msg": "Success",
    "data": { ... }
  }
}