addresses / #237
- userId
-
Gerald Lind @gerald_lind57
- label
- shipping
- recipient
- Andrew Bahringer
- street1
- 58996 Boyle Fields
- street2
- —
- city
- Pasadena
- region
- Georgia
- postalCode
- 69124-0020
- countryAlpha2
- KR
- isDefault
- true
- createdAt
Component variants
Medium
shipping
#237
Small
addresses/237 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/237" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/237"
);
const addresse = await res.json();import type { Addresse } from "https://example-data.com/types/addresses.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/addresses/237"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/237"
)
addresse = res.json() {
"id": 237,
"userId": 179,
"label": "shipping",
"recipient": "Andrew Bahringer",
"street1": "58996 Boyle Fields",
"street2": null,
"city": "Pasadena",
"region": "Georgia",
"postalCode": "69124-0020",
"countryAlpha2": "KR",
"isDefault": true,
"createdAt": "2025-05-23T21:15:19.138Z"
}