addresses / #170
- userId
-
Wade Upton @wade_upton78
- label
- work
- recipient
- Noel Wisozk-Feest
- street1
- 433 Lancaster Road
- street2
- —
- city
- Maybelleworth
- region
- Delaware
- postalCode
- 48873-3772
- countryAlpha2
- PH
- isDefault
- true
- createdAt
Component variants
Medium
work
#170
Small
addresses/170 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/170"
);
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/170"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/170"
)
addresse = res.json() {
"id": 170,
"userId": 129,
"label": "work",
"recipient": "Noel Wisozk-Feest",
"street1": "433 Lancaster Road",
"street2": null,
"city": "Maybelleworth",
"region": "Delaware",
"postalCode": "48873-3772",
"countryAlpha2": "PH",
"isDefault": true,
"createdAt": "2025-02-09T20:49:53.655Z"
}