addresses / #84
- userId
-
Tiara Wilderman @tiara_wilderman
- label
- work
- recipient
- Josh Durgan
- street1
- 96608 Kian Hill
- street2
- —
- city
- Lake Mike
- region
- Montana
- postalCode
- 88814-2226
- countryAlpha2
- KE
- isDefault
- false
- createdAt
Component variants
Medium
work
#84
Small
addresses/84 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/84"
);
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/84"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/84"
)
addresse = res.json() {
"id": 84,
"userId": 66,
"label": "work",
"recipient": "Josh Durgan",
"street1": "96608 Kian Hill",
"street2": null,
"city": "Lake Mike",
"region": "Montana",
"postalCode": "88814-2226",
"countryAlpha2": "KE",
"isDefault": false,
"createdAt": "2025-04-24T20:29:35.210Z"
}