addresses / #139
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- label
- work
- recipient
- Ashley Schamberger Sr.
- street1
- 6911 O'Kon Mill
- street2
- —
- city
- Garrickstad
- region
- Vermont
- postalCode
- 41723
- countryAlpha2
- KR
- isDefault
- true
- createdAt
Component variants
Medium
work
#139
Small
addresses/139 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/139"
);
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/139"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/139"
)
addresse = res.json() {
"id": 139,
"userId": 104,
"label": "work",
"recipient": "Ashley Schamberger Sr.",
"street1": "6911 O'Kon Mill",
"street2": null,
"city": "Garrickstad",
"region": "Vermont",
"postalCode": "41723",
"countryAlpha2": "KR",
"isDefault": true,
"createdAt": "2026-04-21T02:37:16.443Z"
}