> ## Documentation Index
> Fetch the complete documentation index at: https://developers.artport.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Address

export const action_0 = "retrieve"

### Overview

This endpoint can be used to get a single address.

Endpoint: `/api/v1/addresses/{address_id}`

Method: `GET`

### URL Parameters

<ResponseField name="address_id" type="integer" required>
  The ID of the address you wish to { action_0 }.
</ResponseField>

### Response

If the address is successfully retrieved, the API will return a `200 OK` status code.

The response will contain the following content:

<ResponseField name="data" type="array" required>
  An array containing a single [Address](/guide/schemas/address) object.
</ResponseField>

<ResponseExample>
  ```json 200 theme={"system"}
  {
      "data": {
          "id": 1,
          "name": "Kohler Group",
          "email": "parisian.kristoffer@yahoo.com",
          "phone": "+12069536978",
          "line_1": "193 Dach Shores Suite 632",
          "line_2": "Apt. 300",
          "city": "Moenburgh",
          "region": "Colorado",
          "post_code": "72099",
          "country": 1,
          "created_at": "2024-12-09 22:49:57",
          "updated_at": "2024-12-09 22:49:57"
      }
  }
  ```
</ResponseExample>
