addresses / #233
- userId
-
Kaleb Schmidt @kaleb.schmidt
- label
- other
- recipient
- Ian Volkman
- street1
- 225 Mandy Forge
- street2
- —
- city
- Hodkiewiczport
- region
- South Carolina
- postalCode
- 18076-9188
- countryAlpha2
- IL
- isDefault
- true
- createdAt
Component variants
Medium
other
#233
Small
addresses/233 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/233" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/233"
);
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/233"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/233"
)
addresse = res.json() {
"id": 233,
"userId": 171,
"label": "other",
"recipient": "Ian Volkman",
"street1": "225 Mandy Forge",
"street2": null,
"city": "Hodkiewiczport",
"region": "South Carolina",
"postalCode": "18076-9188",
"countryAlpha2": "IL",
"isDefault": true,
"createdAt": "2025-07-22T20:36:16.356Z"
}