addresses / #214
- userId
-
Sandrine Osinski @sandrine.osinski
- label
- home
- recipient
- Harold Bahringer DVM
- street1
- 871 Blair Union
- street2
- —
- city
- Geraldbury
- region
- Nevada
- postalCode
- 05920
- countryAlpha2
- CO
- isDefault
- false
- createdAt
Component variants
Medium
home
#214
Small
addresses/214 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/214" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/214"
);
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/214"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/214"
)
addresse = res.json() {
"id": 214,
"userId": 157,
"label": "home",
"recipient": "Harold Bahringer DVM",
"street1": "871 Blair Union",
"street2": null,
"city": "Geraldbury",
"region": "Nevada",
"postalCode": "05920",
"countryAlpha2": "CO",
"isDefault": false,
"createdAt": "2025-06-03T01:08:26.011Z"
}