- 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
MultiAddress Parsing [application/json]
POST
https://mostqiapi.com/process-text/multi-address-parsing
pt-BR
Last modified:2024-07-18 19:59:32
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
contents
array [object]
required
Example
{
"contents": []
}
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-text/multi-address-parsing' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"contents": [
]
}'
Responses
🟢200200 OK
application/json
Body
result
object
required
contents
array [object {2}]
required
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
message
string
required
code
string
required
errors
null
required
Examples
{
"result": {
"contents": [
{
"index": 0,
"extractions": [
{
"source": null,
"sections": [
{
"name": null,
"groups": [
{
"name": "endereco",
"stdValue": "RUA PARANA, 340\nBAIRRO CENTRO\nCEP 85501074\nPATO BRANCO - PR - BRASIL",
"score": 1,
"components": [
{
"name": "cep",
"stdName": "postcode",
"value": "85501-074",
"stdValue": "85501074",
"score": 1
},
{
"name": "pais",
"stdName": "country",
"value": null,
"stdValue": "REPUBLICA FEDERATIVA DO BRASIL",
"score": null
},
{
"name": "estado",
"stdName": "state",
"value": "PR",
"stdValue": "PARANA",
"score": 1
},
{
"name": "cidade",
"stdName": "city",
"value": "PATO BRANCO",
"stdValue": "PATO BRANCO",
"score": 1
},
{
"name": "bairro",
"stdName": "suburb",
"value": "Centro",
"stdValue": "CENTRO",
"score": 1
},
{
"name": "logradouro",
"stdName": "place",
"value": "Rua Paraná",
"stdValue": "RUA PARANA",
"score": 1
},
{
"name": "rotulo",
"stdName": "label",
"value": null,
"stdValue": null,
"score": null
},
{
"name": "numero",
"stdName": "number",
"value": "340",
"stdValue": "340",
"score": 1
}
],
"secondaries": []
},
{
"name": "endereco_prestador",
"stdValue": "RUA ANA NERI, 416\nBAIRRO BENFICA\nCEP 20911442\nRIO DE JANEIRO - RJ - BRASIL",
"score": 1,
"components": [
{
"name": "cep",
"stdName": "postcode",
"value": "20911-442",
"stdValue": "20911442",
"score": 1
},
{
"name": "pais",
"stdName": "country",
"value": null,
"stdValue": "REPUBLICA FEDERATIVA DO BRASIL",
"score": null
},
{
"name": "estado",
"stdName": "state",
"value": "RJ",
"stdValue": "RIO DE JANEIRO",
"score": 1
},
{
"name": "cidade",
"stdName": "city",
"value": "RIO DE JANEIRO",
"stdValue": "RIO DE JANEIRO",
"score": 1
},
{
"name": "bairro",
"stdName": "suburb",
"value": "BENFICA",
"stdValue": "BENFICA",
"score": 1
},
{
"name": "logradouro",
"stdName": "place",
"value": "RUA ANA NERI",
"stdValue": "RUA ANA NERI",
"score": 1
},
{
"name": "rotulo",
"stdName": "label",
"value": null,
"stdValue": null,
"score": null
},
{
"name": "numero",
"stdName": "number",
"value": "416",
"stdValue": "416",
"score": 1
}
],
"secondaries": []
}
]
}
]
}
]
}
]
},
"requestId": "LmeEFuHfmkK1rtCJuovWh",
"elapsedMilliseconds": 529,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠400R101 A specified parameter is wrong
🟠401R117 Invalid authorization data
🔴500E100 The request could not be processed
Modified at 2024-07-18 19:59:32