- Introduction
- Consuming the API
- Characteristics
- Error Messages
- Support Material
- Authentication
- Address Parsing
- Billing/DailySummary
- Content Compare
- Content Extraction
- Content Extraction Async
- Content Extraction Distance
- Content Fullreader
- Enrichment
- Facematch
- Generative Content Extraction
- Image Properties
- Image Reporting - Continuous Improvement
- License Plate Recognition
- Liveness Detection
- MultiAddress Parsing
- MultiPage Content Extraction
- Vio Extraction
Address Parsing [application/json]
Obsolete
POST
https://mostqiapi.com/process-text/address-parsing
en-US
Last modified:2025-01-27 12:41:51
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
country
string
required
address
string
required
'\n'
characters.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
🟢200200 Ok Response
application/json
Body
result
object
required
match
object
required
requestId
string
required
elapsedMiliseconds
integer
required
status
object
required
code
integer
required
message
string
required
Example
{
"result": {
"match": {
"language": "pt",
"score": 1,
"components": [
{
"std_name": "country",
"name": "pais",
"score": null,
"value": null,
"std_value": "REPUBLICA FEDERATIVA DO BRASIL"
},
{
"std_name": "postcode",
"name": "cep",
"score": 1,
"value": "30494450",
"std_value": "30494450"
},
{
"std_name": "state",
"name": "estado",
"score": 1,
"value": "MG",
"std_value": "MINAS GERAIS"
},
{
"std_name": "city",
"name": "cidade",
"score": 1,
"value": "BELO HORIZONTE",
"std_value": "BELO HORIZONTE"
},
{
"std_name": "place",
"name": "logradouro",
"score": 1,
"value": "RUA DESEMBARGADOR EDESIO FERNANDES",
"std_value": "RUA DESEMBARGADOR EDESIO FERNANDES"
},
{
"std_name": "number",
"name": "numero",
"score": 1,
"value": "148",
"std_value": "148"
},
{
"std_name": "neighborhood",
"name": "bairro",
"score": 1,
"value": "ESTORIL",
"std_value": "ESTORIL"
},
{
"std_name": "conjunct",
"name": "conjunto",
"score": 1,
"value": "CONJ 208\n",
"std_value": "CONJUNTO 208"
}
]
}
},
"requestId": "kX03U8aV102Pve8pQ1Jar",
"elapsedMiliseconds": 0,
"status": {
"code": 200,
"message": "Ok"
}
}
🔴500500 Error Response
🟠400400 Bad Request Response
Modified at 2025-01-27 12:41:51