addresses / #220
- userId
-
Brock Hackett @brock.hackett
- label
- work
- recipient
- Wilbur Kohler
- street1
- 956 Prospect Street
- street2
- Apt. 150
- city
- North Susan
- region
- Maine
- postalCode
- 82053
- countryAlpha2
- ZA
- isDefault
- true
- createdAt
Component variants
Medium
work
#220
Small
addresses/220 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/220"
);
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/220"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/220"
)
addresse = res.json() {
"id": 220,
"userId": 161,
"label": "work",
"recipient": "Wilbur Kohler",
"street1": "956 Prospect Street",
"street2": "Apt. 150",
"city": "North Susan",
"region": "Maine",
"postalCode": "82053",
"countryAlpha2": "ZA",
"isDefault": true,
"createdAt": "2025-11-03T00:48:44.768Z"
}