addresses / #224
- userId
-
Cindy Barrows @cindy_barrows20
- label
- billing
- recipient
- Edna Stroman IV
- street1
- 85817 Howell Island
- street2
- Suite 614
- city
- Orinfurt
- region
- Kentucky
- postalCode
- 79232
- countryAlpha2
- BR
- isDefault
- true
- createdAt
Component variants
Medium
billing
#224
Small
addresses/224 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/224" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/224"
);
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/224"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/224"
)
addresse = res.json() {
"id": 224,
"userId": 165,
"label": "billing",
"recipient": "Edna Stroman IV",
"street1": "85817 Howell Island",
"street2": "Suite 614",
"city": "Orinfurt",
"region": "Kentucky",
"postalCode": "79232",
"countryAlpha2": "BR",
"isDefault": true,
"createdAt": "2025-05-12T07:43:34.397Z"
}