addresses / #96
- userId
-
Ike Breitenberg @ike.breitenberg
- label
- other
- recipient
- Darrel Welch
- street1
- 425 Cara Unions
- street2
- —
- city
- Coltcester
- region
- Arkansas
- postalCode
- 01107
- countryAlpha2
- PE
- isDefault
- true
- createdAt
Component variants
Medium
other
#96
Small
addresses/96 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/96"
);
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/96"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/96"
)
addresse = res.json() {
"id": 96,
"userId": 72,
"label": "other",
"recipient": "Darrel Welch",
"street1": "425 Cara Unions",
"street2": null,
"city": "Coltcester",
"region": "Arkansas",
"postalCode": "01107",
"countryAlpha2": "PE",
"isDefault": true,
"createdAt": "2025-07-15T19:51:57.068Z"
}