- 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
Address Parsing [application/json]
Obsolete
POST
https://mostqiapi.com/process-text/address-parsing
endereço
Last modified:2025-01-27 12:40:39
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
country
string
required
address
string
required
'\n'
.Example
{
"country": "",
"address": ""
}
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/address-parsing' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"country": "",
"address": ""
}'
Responses
🟢200OK
application/json
Body
result
object | null
optional
match
object | null
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": {
"match": {
"language": "pt",
"score": 0.8,
"components": [
{
"name": "cep",
"std_name": "postcode",
"stdName": "postcode",
"score": 1,
"value": "30494-450",
"std_value": "30494450",
"stdValue": "30494450"
},
{
"name": "pais",
"std_name": "country",
"stdName": "country",
"score": null,
"value": null,
"std_value": "REPUBLICA FEDERATIVA DO BRASIL",
"stdValue": "REPUBLICA FEDERATIVA DO BRASIL"
},
{
"name": "estado",
"std_name": "state",
"stdName": "state",
"score": 1,
"value": "MG",
"std_value": "MINAS GERAIS",
"stdValue": "MINAS GERAIS"
},
{
"name": "cidade",
"std_name": "city",
"stdName": "city",
"score": 1,
"value": "Belo Horizonte",
"std_value": "BELO HORIZONTE",
"stdValue": "BELO HORIZONTE"
},
{
"name": "bairro",
"std_name": "suburb",
"stdName": "suburb",
"score": 1,
"value": "Estoril",
"std_value": "ESTORIL",
"stdValue": "ESTORIL"
},
{
"name": "logradouro",
"std_name": "place",
"stdName": "place",
"score": 1,
"value": "Rua Desembargador Edésio Fernandes",
"std_value": "RUA DESEMBARGADOR EDESIO FERNANDES",
"stdValue": "RUA DESEMBARGADOR EDESIO FERNANDES"
},
{
"name": "endereco",
"std_name": "address",
"stdName": "address",
"score": null,
"value": null,
"std_value": null,
"stdValue": null
},
{
"name": "numero",
"std_name": "number",
"stdName": "number",
"score": 1,
"value": "148",
"std_value": "148",
"stdValue": "148"
},
{
"name": "conjunto",
"std_name": "suite",
"stdName": "suite",
"score": 1,
"value": "Conj 208",
"std_value": "CONJUNTO 208",
"stdValue": "CONJUNTO 208"
}
]
}
},
"requestId": "0ovW4gXx9kC92qZMcfdPh",
"elapsedMilliseconds": 396,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠401R117 Invalid authorization data
🟠400R101 A specified parameter is wrong
🔴500E100 The request could not be processed
Modified at 2025-01-27 12:40:39