- 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 Fullreader [application/json]
POST
https://mostqiapi.com/process-image/content-fullreader
fullreaderfull ocrextração de dados
Last modified:2025-01-22 18:59:23
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
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.
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.
returnMetadata
boolean
optional
metadata
, que inclui a leitura dos QRCodes presentes no documento, organizados dentro do objeto barcodes
.A extração de QRCodes será realizada para:
Default:
false
Example
{
"fileBase64": "",
"fileUrl": "",
"filePassword": ""
}
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-fullreader' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"fileBase64": "",
"fileUrl": "",
"filePassword": ""
}'
Responses
🟢200OK
application/json
Body
result
array [object {3}]
required
pageNumber
integer
optional
score
number <float>
optional
>= 0<= 1
fulltext
string
optional
requestId
string
required
elapsedMiliseconds
integer
required
status
object
required
code
string
required
message
string | null
required
errors
array [object {2}] | null
required
Example
{
"result": [
{
"pageNumber": 1,
"score": 1,
"fulltext": "FGTS EVALDO SANTOS DE JESUS CAIXA\nEMPREGADOR DATA DE ADMISSÃO PIS / PASEP\nPHOENIX PLANTAS LTDA 05 / 05 / 2009 324 . 55512 . 37 - 8\nCARTEIRA DE TRABALHO INSCRIÇÃO DO EMPREGADOR NÚMERO DA CONTA\n38916 / 391 9502669000156 9970523806238 / 120 - SP\nDATA DE OPÇÃO DATA E CÓDIGO DE AFASTAMENTO CATEGORIA\n05 / 05 / 2009 02 / 08 / 2009 - 13 1\nTIPO DE CONTA TAXA DE JUROS VALOR PARA FINS RESCISÓRIOS\nOPTANTE 3 % A . A . R $ 0 , 00\nHistórico de Movimentações Junho 2009 - Abril 2010\nDATA LANÇAMENTO VALOR ( R $ ) TOTAL ( R $ )\nSALDO ANTERIOR 0 , 00\n05 / 06 / 2009 115 - DEPOSITO MAIO / 2009 55 , 36\n10 / 07 / 2009 CREDITO DE JAM 0 , 003123 0 , 17 55 , 53\n07 / 07 / 2009 115 - DEPOSITO JUNHO / 2009 63 , 88 119 . 41\n03 / 08 / 2009 DEP RESCISORIO 08 / 2009 SBPC10 / 08 / 2009 20 , 23 139 , 64\n05 / 08 / 2009 SAQUE DEP - COD 04 - 119 , 24 20 , 40\n05 / 08 / 2009 SAQUE JAM COD 04 - 0 , 17 20 , 23\n03 / 08 / 2009 115 - DEPOSITO JULHO / 2009 63 , 88 84 , 11\n10 / 08 / 2009 SAQUE DEP - COD 04 - 20 , 23 63 , 88\n10 / 09 / 2009 CREDITO DE JAM 0 , 002663 0 , 17 64 , 05\n10 / 10 / 2009 CREDITO DE JAM 0 , 002466 0 , 15 64 , 20\n10 / 11 / 2009 CREDITO DE JAM 0 , 002466 0 , 15 64 , 35\n10 / 12 / 2009 CREDITO DE JAM 0 , 002466 0 , 15 64 , 50\n21 / 12 / 2009 AC REPOSICAO DEP EM 05 / 08 / 2009 119 , 24 183 , 74\n21 / 12 / 2009 AC REPOSICAO JAM EM 05 / 08 / 2009 0 , 17 183 , 91\n21 / 12 / 2009 AC AUT JAM CANCELAMENTO SAQUE 1 , 60 185 , 51\n21 / 12 / 2009 AC REPOSICAO DEP EM 10 / 08 / 2009 20 , 23 205 , 74\n21 / 12 / 2009 AC AUT JAM CANCELAMENTO SAQUE 0 , 20 205 , 94\n10 / 01 / 2010 CREDITO DE JAM 0 , 003000 0 , 61 206 , 55\n10 / 02 / 2010 CREDITO DE JAM 0 , 002466 0 , 50 207 , 05\n10 / 03 / 2010 CREDITO DE JAM 0 , 002466 0 , 51 207 , 56\n01 / 04 / 2010 SAQUE DEP - COD 04 - 203 , 35 4 , 21\n01 / 04 / 2010 SAQUE JAM - COD 04 - 4 , 21 0 , 00\nHistórico emitido em : 01 / 10 / 2018 - 15 : 03 Para uso da CAIXA : 013498\n\nSIME\n"
}
],
"requestId": "wRNAwWocsEOrGthzzfUCA",
"elapsedMilliseconds": 2315,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠401R117 Invalid authorization data
🔴500E100 The request could not be processed
Modified at 2025-01-22 18:59:23