API Documentation
Documents
Document Conversion
Personal Earnings Statement
Certificate Of Origin
Dangerous Goods Declaration
International Consignment Note
Document Conversion
Get Conversion
This endpoint retrieves metadata about a document that has been processed with the document-conversion
model. Note that the response can include an RFC 8288-style Link
header that may contain links to file downloads.
GET
/
v1-preview
/
models
/
document-conversion
/
{documentId}
Copy
Ask AI
using ABBYY.DocumentAI;
using ABBYY.DocumentAI.Schemas.Components;
var sdk = new DocumentAI(apiKeyAuth: "<YOUR_BEARER_TOKEN_HERE>");
var res = await sdk.Models.DocumentConversion.GetConversionAsync(documentId: "wh23anb5xjf0ntw5taase5qz");
// handle response
Copy
Ask AI
{
"meta": {
"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
Our API offers authentication via API keys. You can obtain an API key from https://developer.abbyy.com
Path Parameters
The id of the document
Response
200
application/json
The response from the getConversionResults
endpoint.
Was this page helpful?
Copy
Ask AI
using ABBYY.DocumentAI;
using ABBYY.DocumentAI.Schemas.Components;
var sdk = new DocumentAI(apiKeyAuth: "<YOUR_BEARER_TOKEN_HERE>");
var res = await sdk.Models.DocumentConversion.GetConversionAsync(documentId: "wh23anb5xjf0ntw5taase5qz");
// handle response
Copy
Ask AI
{
"meta": {
"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"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.