addresses / #58
- userId
-
Maymie Boehm @maymie.boehm90
- label
- other
- recipient
- Dianna Grant
- street1
- 7552 Highfield Close
- street2
- —
- city
- Silver Spring
- region
- Maryland
- postalCode
- 97541
- countryAlpha2
- JP
- isDefault
- false
- createdAt
Component variants
Medium
other
#58
Small
addresses/58 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/58"
);
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/58"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/58"
)
addresse = res.json() {
"id": 58,
"userId": 48,
"label": "other",
"recipient": "Dianna Grant",
"street1": "7552 Highfield Close",
"street2": null,
"city": "Silver Spring",
"region": "Maryland",
"postalCode": "97541",
"countryAlpha2": "JP",
"isDefault": false,
"createdAt": "2025-04-29T04:42:16.890Z"
}