addresses / #186
- userId
-
Carley Gleichner @carley.gleichner
- label
- other
- recipient
- Mr. Shane Ernser I
- street1
- 768 N 6th Street
- street2
- Suite 298
- city
- Cicero
- region
- Ohio
- postalCode
- 13948
- countryAlpha2
- FR
- isDefault
- true
- createdAt
Component variants
Medium
other
#186
Small
addresses/186 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/186"
);
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/186"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/186"
)
addresse = res.json() {
"id": 186,
"userId": 142,
"label": "other",
"recipient": "Mr. Shane Ernser I",
"street1": "768 N 6th Street",
"street2": "Suite 298",
"city": "Cicero",
"region": "Ohio",
"postalCode": "13948",
"countryAlpha2": "FR",
"isDefault": true,
"createdAt": "2025-11-30T14:25:08.661Z"
}