addresses / #126
- userId
-
Esperanza Casper @esperanza_casper
- label
- shipping
- recipient
- Chad Mills
- street1
- 58979 Dashawn Parkways
- street2
- —
- city
- Town 'n' Country
- region
- Maryland
- postalCode
- 77391
- countryAlpha2
- ET
- isDefault
- false
- createdAt
Component variants
Medium
shipping
#126
Small
addresses/126 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/126" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/126"
);
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/126"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/126"
)
addresse = res.json() {
"id": 126,
"userId": 97,
"label": "shipping",
"recipient": "Chad Mills",
"street1": "58979 Dashawn Parkways",
"street2": null,
"city": "Town 'n' Country",
"region": "Maryland",
"postalCode": "77391",
"countryAlpha2": "ET",
"isDefault": false,
"createdAt": "2026-03-03T22:56:30.808Z"
}