addresses / #109
- userId
-
Stephan Heller @stephan.heller
- label
- billing
- recipient
- Ray Johns
- street1
- 4065 Finn Centers
- street2
- —
- city
- East Octaviaview
- region
- Louisiana
- postalCode
- 83531-0018
- countryAlpha2
- NZ
- isDefault
- true
- createdAt
Component variants
Medium
billing
#109
Small
addresses/109 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/109" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/109"
);
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/109"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/109"
)
addresse = res.json() {
"id": 109,
"userId": 82,
"label": "billing",
"recipient": "Ray Johns",
"street1": "4065 Finn Centers",
"street2": null,
"city": "East Octaviaview",
"region": "Louisiana",
"postalCode": "83531-0018",
"countryAlpha2": "NZ",
"isDefault": true,
"createdAt": "2026-02-16T04:22:28.972Z"
}