GET
/
v1-preview
/
documents
using ABBYY.DocumentAI;
using ABBYY.DocumentAI.Schemas.Components;
using ABBYY.DocumentAI.Schemas.Requests;

var sdk = new DocumentAI(apiKeyAuth: "<YOUR_BEARER_TOKEN_HERE>");

ListDocumentsResponse? res = await sdk.Documents.ListAsync(
    cursor: "xyz",
    limit: 10
);

while(res != null)
{
    // handle items

    res = await res.Next!();
}
[
  {
    "id": "wh23anb5xjf0ntw5taase5qz",
    "name": "document.jpg",
    "createdAt": "2025-02-07T17:44:06.949Z",
    "model": "image-to-text",
    "status": "Processed",
    "pageCount": 10,
    "errors": [
      {
        "message": "Total is required"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Our API offers authentication via API keys. You can obtain an API key from https://developer.abbyy.com

Query Parameters

cursor
string

The cursor to start the list from. If not provided, the list will start from the most recent documents.

limit
integer
default:10

The number of documents to return. The maximum allowed value is 25. If not provided, the list will return up to 10 documents.

Required range: 1 <= x <= 25

Response

200
application/json

Default Response

The response is of type object[].