addresses / #212
- userId
-
Carmel Schultz @carmel.schultz
- label
- billing
- recipient
- Santos Walker
- street1
- 971 Stroman Gateway
- street2
- —
- city
- Placentia
- region
- North Carolina
- postalCode
- 09794-0166
- countryAlpha2
- IN
- isDefault
- true
- createdAt
Component variants
Medium
billing
#212
Small
addresses/212 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/212" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/212"
);
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/212"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/212"
)
addresse = res.json() {
"id": 212,
"userId": 156,
"label": "billing",
"recipient": "Santos Walker",
"street1": "971 Stroman Gateway",
"street2": null,
"city": "Placentia",
"region": "North Carolina",
"postalCode": "09794-0166",
"countryAlpha2": "IN",
"isDefault": true,
"createdAt": "2025-11-21T05:01:10.942Z"
}