addresses / #222
- userId
-
Brock Hackett @brock.hackett
- label
- other
- recipient
- Mr. Edmond Kemmer
- street1
- 958 Daphnee Via
- street2
- —
- city
- Tryciaboro
- region
- Illinois
- postalCode
- 72993
- countryAlpha2
- PK
- isDefault
- false
- createdAt
Component variants
Medium
other
#222
Small
addresses/222 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/222" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/222"
);
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/222"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/222"
)
addresse = res.json() {
"id": 222,
"userId": 161,
"label": "other",
"recipient": "Mr. Edmond Kemmer",
"street1": "958 Daphnee Via",
"street2": null,
"city": "Tryciaboro",
"region": "Illinois",
"postalCode": "72993",
"countryAlpha2": "PK",
"isDefault": false,
"createdAt": "2025-02-19T23:20:43.991Z"
}