Navigation
POST data

address_normalize

1 credit

Normalize a US street address by expanding abbreviations and fixing formatting

Endpoint

POST /api/v1/tools/data/address_normalize

Body Parameters

address string required

Example

input Request
{
    "address": "123 n main st., apt. 4b, springfield, il 62704"
}
output Response
"123 North Main Street, Apartment 4B, Springfield, IL 62704"

Response Format

HTTP/1.1 200 OK SUCCESS
{
  "success": true,
  "data": "123 North Main Street, Apartment 4B, Springfield, IL 62704",
  "meta": {
    "tool": "address_normalize",
    "credits_consumed": 1
  }
}
HTTP/1.1 422 Unprocessable Entity ERROR
{
  "success": false,
  "data": null,
  "error": {
    "code": "validation_error",
    "message": "The given data was invalid."
  }
}

Sign in to try this tool directly from the docs.

Code Examples
Request Example
lightbulb Developer Tip

Credits are deducted before execution. If the upstream tool fails, credits are automatically refunded to your account.