- 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
Vio Extraction [multipart/form-data]
POST
https://mostqiapi.com/process-image/vio-extraction
viovio decodercnhcrlv
Last modified:2024-11-07 17:53:09
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params multipart/form-data
qrCodeField
string
optional
String contendo o valor codificado do qrcode VIO.
file
file
optional
Binário do arquivo a ser processado.
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.
Match pattern:
RFC3548
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/vio-extraction' \
--header 'Authorization: Bearer ' \
--form 'qrCodeField=""' \
--form 'file=@""' \
--form 'fileUrl=""' \
--form 'filePassword=""'
Responses
🟢200S100 Success
application/json
Body
result
array [object {4}] | null
optional
crops
array [object {3}]
optional
fields
array [object {3}]
optional
pageNumber
integer
optional
tags
array[string]
optional
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
code
string
required
message
string | null
required
errors
array [object {2}] | null
required
Example
{
"result": [
{
"crops": [
{
"name": "foto",
"value": "iVBORw0KGg9AABBANSUhERgAAAUiogFIIWM2f3z8+vC1Jj...."
}
],
"fields": [
{
"name": "nome",
"score": 1,
"value": "PAULO LIMA DOS SANTOS"
},
{
"name": "rg",
"score": 1,
"value": "MG11111111 SSP MG"
},
{
"name": "cpf",
"score": 1,
"value": "43944172019"
},
{
"name": "data_nascimento",
"score": 1,
"value": "1974-10-23"
},
{
"name": "filiacao_2",
"score": 1,
"value": "FELISBERTO JOAO DOS SANTOS"
},
{
"name": "filiacao_1",
"score": 1,
"value": "FELIX PEIREIA DE SOUSA SANTOS"
},
{
"name": "permissao",
"score": 1,
"value": "0"
},
{
"name": "acc",
"score": 1,
"value": ""
},
{
"name": "cat_hab",
"score": 1,
"value": "B"
},
{
"name": "registro",
"score": 1,
"value": "13284365385"
},
{
"name": "data_validade",
"score": 1,
"value": "2023-07-27"
},
{
"name": "data_primeira_habilitacao",
"score": 1,
"value": "2004-09-15"
},
{
"name": "observacoes",
"score": 1,
"value": "99"
},
{
"name": "local_uf",
"score": 1,
"value": "MG"
},
{
"name": "data_emissao",
"score": 1,
"value": "2021-10-06"
},
{
"name": "codigo_seguranca",
"score": 1,
"value": "06919786843"
},
{
"name": "renach",
"score": 1,
"value": "MG65225188"
},
{
"name": "local_cidade",
"score": 1,
"value": "NOVA LIMA"
}
],
"pageNumber": 1,
"tags": [
"country=bra",
"subtype=cnh",
"subtype=driving-license"
]
}
],
"requestId": "ePTBwhDSDRkitB1lf3WRRU",
"elapsedMilliseconds": 476,
"status": {
"message": "Success",
"code": "S100",
"errors": null
}
}
🟠401R117 Invalid authorization data
🟠400R101 A specified parameter is wrong
🟠400R130 Unsupported file format
🔴500E100 The request could not be processed
Modified at 2024-11-07 17:53:09