addresses / #6
- userId
-
Brycen Bayer @brycen_bayer60
- label
- other
- recipient
- Don Nicolas
- street1
- 1864 Dare Creek
- street2
- Apt. 192
- city
- Port Susanaside
- region
- North Carolina
- postalCode
- 60276
- countryAlpha2
- PT
- isDefault
- true
- createdAt
Component variants
Medium
other
#6
Small
addresses/6 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/6"
);
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/6"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/6"
)
addresse = res.json() {
"id": 6,
"userId": 6,
"label": "other",
"recipient": "Don Nicolas",
"street1": "1864 Dare Creek",
"street2": "Apt. 192",
"city": "Port Susanaside",
"region": "North Carolina",
"postalCode": "60276",
"countryAlpha2": "PT",
"isDefault": true,
"createdAt": "2024-06-30T06:49:48.991Z"
}