Skip to main content
GET
/
v1
/
tasks
/
{id}
/
results
Task Result
curl --request GET \
  --url https://sdk.nimbleway.com/v1/tasks/{id}/results \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "1ed1dbeb-8f34-4fd1-bb2d-a72bacae2ef3",
  "success": true,
  "links": [
    {
      "title": "Web Scraping API",
      "url": "https://www.example.com/page1",
      "description": "Complete guide to web scraping"
    },
    {
      "url": "https://www.nimbleway.com/nimble-api/web"
    },
    {
      "title": "API Documentation",
      "url": "https://www.example.com/docs"
    }
  ]
}

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

Async Task Results

Response schema for map requests

task_id
string
required

Unique identifier for the map task

Example:

"123e4567-e89b-12d3-a456-426614174000"

success
boolean
required

Indicates if the map request was successful

Example:

true

Array of mapped links with optional titles and descriptions

Examples:
{
"url": "https://example.com/page1",
"title": "Example Page 1",
"description": "This is an example description for page 1"
}
{ "url": "https://example.com/page2" }