API ReferenceIdentification

Check asynchronous identification status

GET
/api/identify-async/status/{id}

Check the status and result of an identification started asynchronously

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Bearer token for API authentication

In: header

Path Parameters

id*string

Unique identification ID to check

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://app.docutray.com/api/identify-async/status/string"

{
  "id": "cmcwh9n4y000350iw3y6hzizw",
  "status": "SUCCESS",
  "document_type_code_options": [
    "invoice",
    "receipt"
  ],
  "request_timestamp": "2025-07-09T21:35:19.138Z",
  "response_timestamp": "2025-07-09T21:35:28.028Z",
  "document_type": {
    "code": "invoice",
    "confidence": 0.99,
    "name": "Invoice"
  },
  "alternatives": [
    {
      "code": "invoice",
      "confidence": 0.99,
      "name": "Invoice"
    },
    {
      "code": "other",
      "confidence": 0.01,
      "name": "Other/Unidentified"
    },
    {
      "code": "receipt",
      "confidence": 0,
      "name": "Receipt"
    }
  ]
}

{
  "error": "Invalid API key"
}
{
  "message": "You do not have access to this identification"
}
{
  "message": "Identification not found"
}
{
  "message": "Internal server error: Error checking identification"
}