GET /address_verifications

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

Headers

  • Authorization string Required

    Authorize your API calls with an Arta API token

Query parameters

  • page integer

    Page number of the results to fetch.

    Default value is 1.

  • page_size integer

    Results per page (max 50)

    Default value is 20.

Responses

  • 200 application/json

    A collection of Address Verification records

    Hide headers attributes Show headers attributes
    • content-type string
    • x-arta-request-id string

      A unique identifier for the Arta API call

    Hide response attributes Show response attributes object
    • items array[object]
      Hide items attributes Show items attributes object
      • created_at string

        A NaiveDatetime-formatted timestamp describing when the resource was created with microsecond precision

      • id string(uuid)

        The id of the address verification in UUID format

      • input object

        The original address as submitted

        Hide input attributes Show input attributes object
        • address_line_1 string

          Primary street address line

        • address_line_2 string | null

          Secondary address line (apartment, suite, unit, etc.)

        • address_line_3 string | null

          Tertiary address line. Used for some international formats

        • city string | null

          City or locality name

        • country string

          ISO 3166-1 alpha-2 country code

        • postal_code string | null

          Postal or ZIP code

        • region string | null

          State, province, or region code

      • match_level string

        The granularity of the address match, from most to least precise

        Values are delivery_point, premise, thoroughfare, locality, administrative_area, or none.

      • recommendation object

        The verified and corrected address with geocoding data. Fields may be null if verification failed

        Hide recommendation attributes Show recommendation attributes object
        • address_line_1 string | null

          Corrected primary street address

        • address_line_2 string | null

          Corrected secondary address line

        • address_line_3 string | null

          Corrected tertiary address line

        • city string | null

          Corrected city or locality

        • country string

          ISO 3166-1 alpha-2 country code

        • is_residential boolean | null

          Whether the address is classified as residential. US addresses only; null for international or when unknown

        • latitude number(float) | null

          Latitude coordinate of the verified address

        • longitude number(float) | null

          Longitude coordinate of the verified address

        • postal_code string | null

          Corrected postal code. For US addresses, may include the +4 extension (e.g., 10001-1234)

        • region string | null

          Corrected state, province, or region

      • reference string | null

        An optional client-provided reference string for correlating with your own records

      • shortcode string

        A human-readable identifier for the address verification prefixed with the organization's shortcode

      • status string

        The verification outcome

        Values are success, partial, or failed.

      • updated_at string

        A NaiveDatetime-formatted timestamp describing when the resource was last updated with microsecond precision

    • metadata object
      Hide metadata attributes Show metadata attributes object
      • page integer(int64)
      • page_size integer(int64)
      • total_count integer(int64)
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
  }
}