addresses / #207
- userId
-
Orrin Grant @orrin.grant42
- label
- work
- recipient
- Lynne Kautzer
- street1
- 176 8th Avenue
- street2
- —
- city
- Juanaside
- region
- Nebraska
- postalCode
- 48829-5224
- countryAlpha2
- IS
- isDefault
- false
- createdAt
Component variants
Medium
work
#207
Small
addresses/207 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/207" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/207"
);
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/207"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/207"
)
addresse = res.json() {
"id": 207,
"userId": 152,
"label": "work",
"recipient": "Lynne Kautzer",
"street1": "176 8th Avenue",
"street2": null,
"city": "Juanaside",
"region": "Nebraska",
"postalCode": "48829-5224",
"countryAlpha2": "IS",
"isDefault": false,
"createdAt": "2024-11-23T12:51:14.493Z"
}