For the complete documentation index, see llms.txt. This page is also available as Markdown.

Retrieve classification results

Retrieve a completed asynchronous classification.

GET /classifications/{classification_id} retrieves a classification request.

Requires the X-Api-Key header.

Path parameters

Parameter
In
Type
Required
Description

classification_id

path

string

Yes

Classification identifier.

Responses

Status
Description
Schema

200

OK

SingleClassificationResponse

400

Bad Request

ValidationError

401

The API key is missing or invalid.

404

No classification exists with that ID.

Example

curl -X GET "https://<api-host>/classifications/{classification_id}" \
  -H "X-Api-Key: $DOCAI_API_KEY"

Last updated