Skip to main content
POST https://api.acedata.cloud/webextrator/tasks (Free) Query historical render / extract tasks (retained for 7 days).

Single Query

{
  "action": "retrieve",
  "id": "550e8400-e29b-41d4-a716-446655440000"
}
Or by trace_id:
{
  "action": "retrieve",
  "trace_id": "550e8400-e29b-41d4-a716-446655440001"
}
Returns a single task object (including fields such as request / response / started_at / finished_at).

Batch Query

{
  "action": "retrieve_batch",
  "ids": ["...", "..."],
  "limit": 12,
  "offset": 0
}
Or use trace_ids, or omit both to paginate through your own task history. Returns:
{
  "items": [ { /* task */ }, ... ],
  "count": 2
}

Field Definitions

FieldDescription
id / task_idUnique task ID
trace_idTrace chain ID (aligned with PlatformGateway / CLS)
typerender or extract
requestOriginal request body
responseRender / extract result (same as sync response data)
started_at / finished_at / elapsedTimestamps and elapsed time (seconds)
This API is free and does not count towards usage.