addresses / #79
- userId
-
Theresia Collins @theresia_collins86
- label
- work
- recipient
- Emilio Ziemann
- street1
- 7241 Douglas Road
- street2
- —
- city
- East Abigayle
- region
- Iowa
- postalCode
- 90532-2940
- countryAlpha2
- IE
- isDefault
- true
- createdAt
Component variants
Medium
work
#79
Small
addresses/79 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/79"
);
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/79"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/79"
)
addresse = res.json() {
"id": 79,
"userId": 63,
"label": "work",
"recipient": "Emilio Ziemann",
"street1": "7241 Douglas Road",
"street2": null,
"city": "East Abigayle",
"region": "Iowa",
"postalCode": "90532-2940",
"countryAlpha2": "IE",
"isDefault": true,
"createdAt": "2025-01-23T18:09:51.698Z"
}