addresses / #232
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- label
- other
- recipient
- Elbert Lehner
- street1
- 449 Maya Meadow
- street2
- —
- city
- Abilene
- region
- Minnesota
- postalCode
- 98943
- countryAlpha2
- AE
- isDefault
- true
- createdAt
Component variants
Medium
other
#232
Small
addresses/232 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/232" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/232"
);
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/232"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/232"
)
addresse = res.json() {
"id": 232,
"userId": 170,
"label": "other",
"recipient": "Elbert Lehner",
"street1": "449 Maya Meadow",
"street2": null,
"city": "Abilene",
"region": "Minnesota",
"postalCode": "98943",
"countryAlpha2": "AE",
"isDefault": true,
"createdAt": "2026-05-19T06:22:16.293Z"
}