---
title: "Get address"
method: GET
path: "/address/{id}"
tags: ["Address"]
---

# Get address

`GET /address/{id}`

Get the shipping address with the given ID.

## Path parameters

- `id` string, required — ID of the shipping address to get.

## Response `200`

Shipping address.

- object
  - `data` Address, required — Physical address associated with a Terminal shop user.
    - `id` string, required — Unique object identifier. The format and length of IDs may change over time.
    - `name` string, required — The recipient's name.
    - `street1` string, required — Street of the address.
    - `street2` string — Apartment, suite, etc. of the address.
    - `city` string, required — City of the address.
    - `province` string — Province or state of the address.
    - `country` string, required — ISO 3166-1 alpha-2 country code of the address.
    - `zip` string, required — Zip code of the address.
    - `phone` string — Phone number of the recipient.
    - `created` string, required — Date the address was created.

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2025-04-14** `58fa4af8e325` — 1 info
  - added the required property `data/allOf[#/components/schemas/Address]/created` to the response with the `200` status
- **2025-03-19** `1c6726b12e29` — 4 breaking, 24 info
  - the response's body type/format changed from ``/`` to `object`/`` for status `401`
  - the response's body type/format changed from ``/`` to `object`/`` for status `404`
  - the response's body type/format changed from ``/`` to `object`/`` for status `429`
  - the response's body type/format changed from ``/`` to `object`/`` for status `500`
  - …24 more
- **2025-03-07** `979a6c40552c` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/terminaldotshop/apis/terminal-api/changes/address/:id/get.md)

---

[API](https://skmtc.dev/terminaldotshop/apis/terminal-api.md) · [All operations](https://skmtc.dev/terminaldotshop/apis/terminal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/terminaldotshop/terminal-api/revisions/84ef614abb97/schema)
