addresses / #227
- userId
-
Talon Turner @talon.turner59
- label
- other
- recipient
- Constance Raynor
- street1
- 70764 Balmoral Road
- street2
- —
- city
- Armstrongbury
- region
- Pennsylvania
- postalCode
- 40220-8230
- countryAlpha2
- FJ
- isDefault
- false
- createdAt
Component variants
Medium
other
#227
Small
addresses/227 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/227" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/227"
);
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/227"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/227"
)
addresse = res.json() {
"id": 227,
"userId": 166,
"label": "other",
"recipient": "Constance Raynor",
"street1": "70764 Balmoral Road",
"street2": null,
"city": "Armstrongbury",
"region": "Pennsylvania",
"postalCode": "40220-8230",
"countryAlpha2": "FJ",
"isDefault": false,
"createdAt": "2026-02-16T03:37:30.262Z"
}