addresses / #31
- userId
-
Jennifer Stoltenberg @jennifer_stoltenberg
- label
- home
- recipient
- Sophie Roberts
- street1
- 703 Daphney Flats
- street2
- Apt. 952
- city
- West Judge
- region
- California
- postalCode
- 95900-5544
- countryAlpha2
- MA
- isDefault
- false
- createdAt
Component variants
Medium
home
#31
Small
addresses/31 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/31"
);
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/31"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/31"
)
addresse = res.json() {
"id": 31,
"userId": 25,
"label": "home",
"recipient": "Sophie Roberts",
"street1": "703 Daphney Flats",
"street2": "Apt. 952",
"city": "West Judge",
"region": "California",
"postalCode": "95900-5544",
"countryAlpha2": "MA",
"isDefault": false,
"createdAt": "2025-06-25T16:08:06.537Z"
}