addresses / #211
- userId
-
Brad Wisoky @brad.wisoky41
- label
- other
- recipient
- Willie Ruecker
- street1
- 789 Church Street
- street2
- —
- city
- Levittown
- region
- Massachusetts
- postalCode
- 12359
- countryAlpha2
- EG
- isDefault
- true
- createdAt
Component variants
Medium
other
#211
Small
addresses/211 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/211"
);
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/211"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/211"
)
addresse = res.json() {
"id": 211,
"userId": 154,
"label": "other",
"recipient": "Willie Ruecker",
"street1": "789 Church Street",
"street2": null,
"city": "Levittown",
"region": "Massachusetts",
"postalCode": "12359",
"countryAlpha2": "EG",
"isDefault": true,
"createdAt": "2025-09-01T02:46:13.550Z"
}