Skip to main content
GET
/
v1
/
tasks
/
{id}
Task Status
curl --request GET \
  --url https://sdk.nimbleway.com/v1/tasks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "task": {
    "id": "8e8cfde8-345b-42b8-b3e2-0c61eb11e00f",
    "state": "completed",
    "created_at": "2026-01-24T12:36:24.685Z",
    "modified_at": "2026-01-24T12:37:30.123Z",
    "input": {
      "url": "https://example.com"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

The unique identifier of the async task

Example:

"8e8cfde8-345b-42b8-b3e2-0c61eb11e00f"

Response

Task Details with Results

Task details including metadata and results. The 'result' field structure varies based on method used (extract, search, map, agent, or crawl).

status
string
Example:

"success"

task
object