GuidesAPI ReferenceProcessor Changelog
GuidesAPI ReferenceProcessor Changelog
    • Getting Started
    • API Versioning
    • SDKs
  • Processor Endpoints
    • POSTRun Processor
    • GETList Processor Runs
    • GETGet Processor Run
    • POSTCancel Processor Run
    • DELDelete Processor Run
    • GETGet Batch Processor Run
    • POSTCreate Processor
    • POSTUpdate Processor
    • POSTPublish Processor Version
    • GETGet Processor Version
    • GETList Processor Versions
  • Workflow Endpoints
    • POSTRun Workflow
    • GETGet Workflow Run
    • GETList Workflow Runs
    • POSTUpdate Workflow Run
    • POSTCancel Workflow Run
    • DELDelete Workflow Run
    • POSTCreate Workflow
    • POSTBatch Run Workflow
    • POSTCorrect Workflow Run Outputs
  • Parse Endpoints
    • POSTParse File
    • POSTParse File Async
    • GETGet Parser Run
    • DELDelete Parser Run
  • File Endpoints
    • POSTUpload File
    • GETGet File
    • DELDelete File
    • GETList Files
    • POSTCreate File
  • Evaluation Set Endpoints
    • GETGet Evaluation Set
    • GETList Evaluation Sets
    • POSTCreate Evaluation Set
    • GETList Evaluation Set Items
    • POSTCreate Evaluation Set Item
    • POSTUpdate Evaluation Set Item
    • POSTBulk Create Evaluation Set Items
LogoLogo
Evaluation Set Endpoints

GET
https://api.extend.ai/evaluation_sets
GET
/evaluation_sets
1curl -G https://api.extend.ai/evaluation_sets \
2 -H "x-extend-api-version: " \
3 -H "Authorization: Bearer <token>" \
4 -d processorId=processor_id_here \
5 -d sortBy=createdAt \
6 -d sortDir=desc
Try it
200Retrieved
1{
2 "success": true,
3 "evaluationSets": [
4 {
5 "object": "evaluation_set",
6 "id": "ev_2LcgeY_mp2T5yPaEuq5Lw",
7 "name": "Invoice Processing Test Set",
8 "description": "Q4 2023 vendor invoices for accuracy testing",
9 "processorId": "dp_Xj8mK2pL9nR4vT7qY5wZ",
10 "createdAt": "2024-03-21T15:30:00Z",
11 "updatedAt": "2024-03-21T16:45:00Z"
12 },
13 {
14 "object": "evaluation_set",
15 "id": "ev_8mXp9Rq3nW2vY1kT6fH4bZ",
16 "name": "Receipt Classification Test Set",
17 "description": "Mixed receipt types for classification accuracy",
18 "processorId": "dp_Bm8nQ2rL5pK9wF3dR7hY6",
19 "createdAt": "2024-03-15T09:20:00Z",
20 "updatedAt": "2024-03-20T14:30:00Z"
21 },
22 {
23 "object": "evaluation_set",
24 "id": "ev_5kN7pQ9mR2wV8xT3fG1bY",
25 "name": "Contract Splitting Eval Set",
26 "description": "Multi-page contracts for document splitting evaluation",
27 "processorId": "dp_4vX8mL6nP9rQ2sW5kF3hT",
28 "createdAt": "2024-03-10T11:45:00Z",
29 "updatedAt": "2024-03-18T10:15:00Z"
30 }
31 ],
32 "nextPageToken": "xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="
33}
Was this page helpful?
Previous

Create Evaluation Set

Next
Built with
List evaluation sets in your account. You can use the `processorId` parameter to filter evaluation sets by processor. This endpoint returns a paginated response. You can use the `nextPageToken` to fetch subsequent results.
List Evaluation Sets

Authentication

AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Headers

x-extend-api-version"2025-04-21"OptionalDefaults to 2025-04-21
API version to use for the request. If you do not specify a version, you will either receive a `400 Bad Request` or be set to a previous legacy version. See [API Versioning](/developers/api-versioning) for more details.

Query parameters

processorIdstringOptional
The ID of the processor to filter evaluation sets by. Example: `"dp_Xj8mK2pL9nR4vT7qY5wZ"`
sortByenumOptionalDefaults to updatedAt
Sorts the evaluation sets by the given field.
Allowed values:
sortDirenumOptionalDefaults to desc
Sorts the evaluation sets in ascending or descending order. Ascending order means the earliest evaluation set is returned first.
Allowed values:
nextPageTokenstringOptional
The token used to fetch the page of results from a previous request. We use cursor based pagination and will return a `nextPageToken` in the response if there are more results. Note that if other parameters are changed in subsequent requests, you may receive inconsistent data. example: `"xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="`
maxPageSizeintegerOptional>=1<=1000Defaults to 10
The maximum number of results to return in the response. You may receive less than this number if there are fewer results than the maximum.

Response

Successfully retrieved evaluation sets
successboolean
evaluationSetslist of objects
nextPageTokenstring or null
The token used to fetch the page of results from a previous request. We use cursor based pagination and will return a `nextPageToken` in the response if there are more results. Note that if other parameters are changed in subsequent requests, you may receive inconsistent data. example: `"xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="`

Errors

Sorts the evaluation sets by the given field.
Sorts the evaluation sets in ascending or descending order. Ascending order means the earliest evaluation set is returned first.
The maximum number of results to return in the response. You may receive less than this number if there are fewer results than the maximum.
Successfully retrieved evaluation sets

The token used to fetch the page of results from a previous request. We use cursor based pagination and will return a nextPageToken in the response if there are more results.

Note that if other parameters are changed in subsequent requests, you may receive inconsistent data.

example: "xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="

List evaluation sets in your account. You can use the processorId parameter to filter evaluation sets by processor.

This endpoint returns a paginated response. You can use the nextPageToken to fetch subsequent results.

Bearer authentication of the form Bearer <token>, where token is your auth token.

The token used to fetch the page of results from a previous request. We use cursor based pagination and will return a nextPageToken in the response if there are more results.

Note that if other parameters are changed in subsequent requests, you may receive inconsistent data.

example: "xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="

The ID of the processor to filter evaluation sets by.

Example: "dp_Xj8mK2pL9nR4vT7qY5wZ"

API version to use for the request. If you do not specify a version, you will either receive a 400 Bad Request or be set to a previous legacy version. See API Versioning for more details.