addresses / #108
- userId
-
Mateo Gerlach @mateo.gerlach
- label
- home
- recipient
- Miss Dawn Goldner
- street1
- 39811 Schulist Shore
- street2
- —
- city
- Oak Lawn
- region
- Delaware
- postalCode
- 44974
- countryAlpha2
- PH
- isDefault
- true
- createdAt
Component variants
Medium
home
#108
Small
addresses/108 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/108"
);
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/108"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/108"
)
addresse = res.json() {
"id": 108,
"userId": 81,
"label": "home",
"recipient": "Miss Dawn Goldner",
"street1": "39811 Schulist Shore",
"street2": null,
"city": "Oak Lawn",
"region": "Delaware",
"postalCode": "44974",
"countryAlpha2": "PH",
"isDefault": true,
"createdAt": "2026-04-08T21:56:47.865Z"
}