addresses / #62
- userId
-
Jolie Abernathy @jolie_abernathy33
- label
- shipping
- recipient
- Dr. Roosevelt Hilpert
- street1
- 691 Lodge Lane
- street2
- —
- city
- Port Korbin
- region
- South Dakota
- postalCode
- 11035-7805
- countryAlpha2
- CA
- isDefault
- true
- createdAt
Component variants
Medium
shipping
#62
Small
addresses/62 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/62"
);
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/62"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/62"
)
addresse = res.json() {
"id": 62,
"userId": 50,
"label": "shipping",
"recipient": "Dr. Roosevelt Hilpert",
"street1": "691 Lodge Lane",
"street2": null,
"city": "Port Korbin",
"region": "South Dakota",
"postalCode": "11035-7805",
"countryAlpha2": "CA",
"isDefault": true,
"createdAt": "2024-07-25T13:34:47.831Z"
}