addresses / #210
- userId
-
Sheridan Turcotte @sheridan.turcotte
- label
- billing
- recipient
- Ms. Sonya Batz
- street1
- 50189 Mount Pleasant
- street2
- Apt. 482
- city
- Hansenport
- region
- North Carolina
- postalCode
- 16706
- countryAlpha2
- US
- isDefault
- false
- createdAt
Component variants
Medium
billing
#210
Small
addresses/210 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/210"
);
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/210"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/210"
)
addresse = res.json() {
"id": 210,
"userId": 153,
"label": "billing",
"recipient": "Ms. Sonya Batz",
"street1": "50189 Mount Pleasant",
"street2": "Apt. 482",
"city": "Hansenport",
"region": "North Carolina",
"postalCode": "16706",
"countryAlpha2": "US",
"isDefault": false,
"createdAt": "2025-04-13T00:15:02.655Z"
}