Skip to main content
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

Job fetched successfully

id
string
required

The ID of the job

Example:

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

status
string
required

The status of the job

Example:

"pending"

job_type
string

The type of the job

Example:

"fetch_content"

payload
object

The payload of the job

Example:
{ "url": "https://www.google.com" }
result
object

The result of the job

Example:
{
"contentIds": ["content123", "content456"],
"contentGroupIds": ["group789", "group101"]
}
attempts
number

The number of attempts of the job

Example:

1

created_at
string<date-time>

The created at of the job

Example:

"2025-03-24T13:23:18.248Z"

updated_at
string<date-time>

The updated at of the job

Example:

"2025-03-24T13:23:18.248Z"

I