addresses / #136
- userId
-
Rosina Larkin @rosina.larkin75
- label
- billing
- recipient
- Albert Reichert
- street1
- 385 Hagenes Mills
- street2
- —
- city
- East Lesleymouth
- region
- West Virginia
- postalCode
- 52132-8092
- countryAlpha2
- GR
- isDefault
- true
- createdAt
Component variants
Medium
billing
#136
Small
addresses/136 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/136"
);
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/136"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/136"
)
addresse = res.json() {
"id": 136,
"userId": 103,
"label": "billing",
"recipient": "Albert Reichert",
"street1": "385 Hagenes Mills",
"street2": null,
"city": "East Lesleymouth",
"region": "West Virginia",
"postalCode": "52132-8092",
"countryAlpha2": "GR",
"isDefault": true,
"createdAt": "2025-10-23T15:53:25.192Z"
}