- 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 Compare [application/json]
POST
https://mostqiapi.com/process-image/content-compare
comparação de conteúdocomparação de textopesquisa de texto em documento
Last modified:2025-01-24 12:18:51
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
fileBase64
string <base64>
optional
Match pattern:
RFC3548
fileUrl
string
optional
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
fields
array [object {3}]
field
name
string | null
required
value
string | null
required
type
string
optional
Example
{
"fileBase64": "",
"fileUrl": "https://...",
"filePassword": "",
"fields": [
{
"name": "nome",
"value": "JUNIOR CARDOSO VILARINO"
},
{
"name": "data_expedicao",
"value": "09-20-2017",
"type": "full-date"
},
{
"name": "documento_origem",
"value": "Cert Nasc LV 237 - FL 128 - Termo"
}
]
}
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-compare' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"fileBase64": "",
"fileUrl": "https://...",
"filePassword": "",
"fields": [
{
"name": "nome",
"value": "JUNIOR CARDOSO VILARINO"
},
{
"name": "data_expedicao",
"value": "09-20-2017",
"type": "full-date"
},
{
"name": "documento_origem",
"value": "Cert Nasc LV 237 - FL 128 - Termo"
}
]
}'
Responses
🟢200OK
application/json
Body
result
array [object {1}]
required
fields
array [object {4}]
field
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
code
string
required
message
string | null
required
errors
array [object {2}] | null
required
Example
{
"result": [
{
"fields": [
{
"name": "cpf",
"value": "83644116083",
"score": 1
},
{
"name": "nome",
"value": "CRISTINA DE OLIVEIRA",
"score": 0.5
}
]
}
],
"requestId": "6ERWpivDfUmhEoqnXeDHi",
"elapsedMilliseconds": 1089,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠400R101 A specified parameter is wrong
🔴500E100 The request could not be processed
Modified at 2025-01-24 12:18:51