The following types will always be present in the API response. If a type parameter is not found in the input, its value will be null
.Parameter Name | Variable Type |
---|
price | string | null |
Notes#
Each type parameter in the data
array will always have the specified type, with the possibility of being null
.
If a specific type parameter is not present in the input, its value in the response will be null
.
Request
Add parameter in header X-API-KEY
Example:X-API-KEY: ********************
Body Params multipart/form-data
Request samples
curl --location --request POST 'https://api.axtraction.ai/v1/document/document-ai/model-a1b2c3d4e5f6' \
--header 'X-API-KEY;' \
--form 'file=@""' \
--form 'fileBase64="JVBERi0xLjMNCiXi48/...."' \
--form 'mimeType="application/pdf"'
Responses
application/json {
"success": true,
"data": [
{
"type": "price",
"value": 12.2
}
],
"miscellaneous": {
"processedTime": 108.996
}
}
Modified at 2025-05-13 03:40:08