addresses / #78
- userId
-
Jarrell Flatley @jarrell_flatley39
- label
- home
- recipient
- Tamara Bins
- street1
- 567 Pearl Street
- street2
- —
- city
- Georgefort
- region
- Arizona
- postalCode
- 93094-8817
- countryAlpha2
- NL
- isDefault
- false
- createdAt
Component variants
Medium
home
#78
Small
addresses/78 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/78"
);
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/78"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/78"
)
addresse = res.json() {
"id": 78,
"userId": 61,
"label": "home",
"recipient": "Tamara Bins",
"street1": "567 Pearl Street",
"street2": null,
"city": "Georgefort",
"region": "Arizona",
"postalCode": "93094-8817",
"countryAlpha2": "NL",
"isDefault": false,
"createdAt": "2025-03-10T17:12:29.088Z"
}