addresses / #100
- userId
-
Jesse Kiehn @jesse_kiehn92
- label
- shipping
- recipient
- Christina Haley
- street1
- 53009 Mavis Path
- street2
- —
- city
- Justicebury
- region
- California
- postalCode
- 40294
- countryAlpha2
- AE
- isDefault
- false
- createdAt
Component variants
Medium
shipping
#100
Small
addresses/100 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/100"
);
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/100"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/100"
)
addresse = res.json() {
"id": 100,
"userId": 76,
"label": "shipping",
"recipient": "Christina Haley",
"street1": "53009 Mavis Path",
"street2": null,
"city": "Justicebury",
"region": "California",
"postalCode": "40294",
"countryAlpha2": "AE",
"isDefault": false,
"createdAt": "2024-10-06T00:17:22.432Z"
}