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.
Retrieve a paginated collection of address verifications belonging to your organization, sorted by creation date descending
GET
/address_verifications
curl \
--request GET 'https://api.arta.io/address_verifications' \
--header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"items": [
{
"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
}
}
],
"metadata": {
"page": 1,
"page_size": 20,
"total_count": 1
}
}