Availability: Public Preview
This endpoint is currently in public preview and available only to approved accounts. Please contact Arta to request access for your organization.
Verify an address and receive a corrected recommendation.
POST
/address_verifications
curl \
--request POST 'https://api.arta.io/address_verifications' \
--header "Content-Type: application/json" \
--header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y" \
--data '{"address_verification":{"input":{"address_line_1":"123 Main St","address_line_2":"string","address_line_3":"string","city":"New York","country":"US","postal_code":"10001","region":"NY"},"reference":"order-12345"}}'
Request examples
# Headers
Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y
# Payload
{
"address_verification": {
"input": {
"address_line_1": "123 Main St",
"address_line_2": "string",
"address_line_3": "string",
"city": "New York",
"country": "US",
"postal_code": "10001",
"region": "NY"
},
"reference": "order-12345"
}
}
Response examples (201)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"input": {
"city": "New York",
"region": "NY",
"country": "US",
"postal_code": "10001",
"address_line_1": "123 Main St",
"address_line_2": "Apt 4B",
"address_line_3": null
},
"status": "success",
"reference": "order-12345",
"shortcode": "ACME-V1A2B3",
"created_at": "2025-06-15T12:00:00.000000",
"updated_at": "2025-06-15T12:00:00.000000",
"match_level": "delivery_point",
"recommendation": {
"city": "New York",
"region": "NY",
"country": "US",
"latitude": 40.7128,
"longitude": -74.006,
"postal_code": "10001-1234",
"address_line_1": "123 Main Street",
"address_line_2": "Apt 4B",
"address_line_3": null,
"is_residential": true
}
}
Response examples (400)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"errors": {
"detail": "string"
}
}
Response examples (422)
{
"errors": {
"detail": "string"
}
}