GET
/
fusion
/
jobs
/
{id}
Get a job by ID
curl --request GET \
  --url https://api.tapti.ai/fusion/jobs/{id}
{
  "id": "47f85f19-60fc-4524-9c99-42a96c286d86",
  "job_type": "fetch_content",
  "payload": {
    "url": "https://www.google.com"
  },
  "status": "pending",
  "result": {
    "contentIds": [
      "content123",
      "content456"
    ],
    "contentGroupIds": [
      "group789",
      "group101"
    ]
  },
  "attempts": 1,
  "created_at": "2025-03-24T13:23:18.248Z",
  "updated_at": "2025-03-24T13:23:18.248Z"
}

Path Parameters

id
string
required

The ID of the job to get

Example:

"47f85f19-60fc-4524-9c99-42a96c286d86"

Response

200
application/json

Job fetched successfully

The response is of type object.