addresses / #83
- userId
-
Tiara Wilderman @tiara_wilderman
- label
- home
- recipient
- Morris Smith
- street1
- 642 Dickinson Dam
- street2
- Suite 978
- city
- North Jaidaboro
- region
- Arizona
- postalCode
- 36034-0957
- countryAlpha2
- AR
- isDefault
- false
- createdAt
Component variants
Medium
home
#83
Small
addresses/83 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/83"
);
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/83"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/83"
)
addresse = res.json() {
"id": 83,
"userId": 66,
"label": "home",
"recipient": "Morris Smith",
"street1": "642 Dickinson Dam",
"street2": "Suite 978",
"city": "North Jaidaboro",
"region": "Arizona",
"postalCode": "36034-0957",
"countryAlpha2": "AR",
"isDefault": false,
"createdAt": "2025-10-12T01:28:26.698Z"
}