addresses / #128
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- label
- home
- recipient
- Mack Tromp MD
- street1
- 515 Melba Corners
- street2
- —
- city
- Sierra Vista
- region
- Mississippi
- postalCode
- 34417-8215
- countryAlpha2
- GR
- isDefault
- true
- createdAt
Component variants
Medium
home
#128
Small
addresses/128 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/128"
);
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/128"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/128"
)
addresse = res.json() {
"id": 128,
"userId": 98,
"label": "home",
"recipient": "Mack Tromp MD",
"street1": "515 Melba Corners",
"street2": null,
"city": "Sierra Vista",
"region": "Mississippi",
"postalCode": "34417-8215",
"countryAlpha2": "GR",
"isDefault": true,
"createdAt": "2025-02-14T20:55:29.835Z"
}