- Introdução
- Consumindo a API
- Características da API
- Mensagens de Erro
- Material de Apoio
- Authentication
- Address Parsing
- Billing/DailySummary
- Content Classification
- Content Compare
- Content Extraction
- Content Extraction Async
- Content Extraction Distance
- Content Fullreader
- Enrichment
- Facematch
- Generative Content Extraction
- Image Properties
- Image Reporting - Continuous Improvement
- Invoice Extraction
- License Plate Recognition
- Liveness Detection
- Liveness Streaming
- MultiAddress Parsing
- MultiPage Content Extraction
- Payment Card Extraction
- Vio Extraction
Content Extraction Async [application/json]
POST
https://mostqiapi.com/process-image/content-extraction
iocrcontent extractiondoc extractionextração de dadosocr
Last modified:2025-03-13 17:45:11
INFO
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
webhook
object
optional
url
string | null
optional
fallbackUrl
string | null
optional
authorization
object | null
optional
fileBase64
string <base64>
optional
Binário do arquivo a ser processado, codificado em string de texto conforme o padrão RFC 4648 usando a codificação base64.
Match pattern:
RFC3548
fileUrl
string
optional
Url pública do arquivo a ser processado.
filePassword
string <base64>
optional
A senha deve ser codificada em uma string base64 (RFC 4648), pois PDFs permitem que as senhas sejam dados binários.
returnImage
boolean
optional
Default:
false
returnedImageQuality
string
optional
>= 0 characters<= 100 characters
Default:
78
returnCrops
boolean
optional
Default:
false
tags
array[string]
optional
Example
{
"webhook": {
"url": "",
"fallbackUrl": "",
"authorization": {
"headers": [
{
"name": "nomeCabecalho1",
"value": "valorCabecalho1"
},
{
"name": "nomeCabecalho2",
"value": "valorCabecalho2"
}
],
"queryStrings": [
{
"name": "nomeQs1",
"value": "valorQs1"
},
{
"name": "nomeQs2",
"value": "valorQs2"
}
],
"mtls": false
}
},
"fileBase64": "",
"fileUrl": "",
"filePassword": "",
"returnImage": false,
"returnedImageQuality": "",
"returnCrops": false,
"tags": [
""
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mostqiapi.com/process-image/content-extraction' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"webhook": {
"url": "",
"fallbackUrl": "",
"authorization": {
"headers": [
{
"name": "nomeCabecalho1",
"value": "valorCabecalho1"
},
{
"name": "nomeCabecalho2",
"value": "valorCabecalho2"
}
],
"queryStrings": [
{
"name": "nomeQs1",
"value": "valorQs1"
},
{
"name": "nomeQs2",
"value": "valorQs2"
}
],
"mtls": false
}
},
"fileBase64": "",
"fileUrl": "",
"filePassword": "",
"returnImage": false,
"returnedImageQuality": "",
"returnCrops": false,
"tags": [
""
]
}'
Responses
🟢200OK
application/json
Body
result
object
required
processId
string
required
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
code
string
required
message
string | null
required
errors
object | null
required
Example
{
"result": {
"processId": "67a7ae91-4d7f-48e2-ad03-94ff19e1b32d"
},
"requestId": "kyamMSMguEe19elsr6SFB",
"elapsedMilliseconds": 17,
"status": {
"message": "Ok",
"code": "201",
"errors": null
}
}
🟢200OK webhook
🟠401R117 Invalid authorization data
🟠400R101 A specified parameter is wrong
🟠400R130 Unsupported file format
🔴500E100 The request could not be processed
Modified at 2025-03-13 17:45:11