GET
/
api
/
v1
/
extractions
/
results
/
task
/
{task_identifier}
curl --request GET \
  --url https://api.fieldwise.ai/api/v1/extractions/results/task/{task_identifier} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "created_at": "2024-03-21T12:00:00Z",
    "extraction_document_id": 1,
    "extraction_id": 1,
    "id": 1,
    "results": [
      {
        "extracted_field": "value"
      }
    ],
    "task_identifier": "RunExtraction:123e4567-e89b-12d3-a456-426614174000"
  }
}

Authorizations

X-API-Key
string
header
required

Headers

X-API-Key
string | null

Path Parameters

task_identifier
string
required

Response

200
application/json

Successful Response

The response is of type object.