v41

latestOpenAPI 3.1.0raw.githubusercontent.com2025-08-053715199.1 KB
Address

Get address

Get the shipping address with the given ID.

get/address/{id}

Path parameters

idstring required

ID of the shipping address to get.

Example:shp_XXXXXXXXXXXXXXXXXXXXXXXXX

Response

Shipping address.

Example response

{
  "data": {
    "id": "shp_XXXXXXXXXXXXXXXXXXXXXXXXX",
    "name": "John Doe",
    "street1": "123 Main St",
    "street2": "Apt 1",
    "city": "Anytown",
    "province": "CA",
    "zip": "12345",
    "country": "US",
    "phone": "5555555555",
    "created": "2024-06-29T19:36:19.000Z"
  }
}