- 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
License Plate Recognition [application/json]
POST
https://mostqiapi.com/process-image/lpr
placa
Last modified:2024-11-08 11:36:14
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
fileBase64
string
optional
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.
returnImage
boolean
optional
Default:
false
returnedImageQuality
string
optional
>= 0 characters<= 100 characters
Default:
75
Example
{
"fileBase64": "",
"fileUrl": "",
"filePassword": "",
"returnImage": true,
"returnedImageQuality": ""
}
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/lpr' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"fileBase64": "",
"fileUrl": "",
"filePassword": "",
"returnImage": true,
"returnedImageQuality": ""
}'
Responses
🟢200OK
application/json
Body
result
array [object {7}]
required
fields
array [object {4}] | null
optional
crops
array [object {3}] | null
optional
score
number <float> | null
optional
type
string | null
optional
stdType
string | null
optional
pageNumber
integer | null
optional
tags
array[string] | null
optional
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
message
string | null
required
code
string
required
errors
array [object {2}] | null
required
Example
{
"result": [
{
"fields": [
{
"name": "plate",
"stdName": "plate",
"value": "XXXXXXX",
"score": 0.9
},
{
"name": "vehicle_type",
"stdName": "vehicle_type",
"value": "XXXXXXX",
"score": 0.68
}
],
"crops": [
{
"name": "plate",
"stdName": "plate",
"value": "/9j/4AA...=="
},
{
"name": "vehicle",
"stdName": "vehicle",
"value": "/9j/4AA...k="
}
],
"score": 0.85,
"type": "plate",
"stdType": "plate",
"pageNumber": 1,
"tags": [
"plate"
]
}
],
"requestId": "XXXXXXXXXXXXXXXXXXXX",
"elapsedMilliseconds": 860,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠401R117 Invalid authorization data
🔴500E100 The request could not be processed
Modified at 2024-11-08 11:36:14