addresses / #160
- userId
-
Jennifer Hoeger @jennifer.hoeger
- label
- billing
- recipient
- Raul Heathcote
- street1
- 160 The Maltings
- street2
- —
- city
- Reichelchester
- region
- Kentucky
- postalCode
- 25319
- countryAlpha2
- IN
- isDefault
- false
- createdAt
Component variants
Medium
billing
#160
Small
addresses/160 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/160" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/160"
);
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/160"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/160"
)
addresse = res.json() {
"id": 160,
"userId": 119,
"label": "billing",
"recipient": "Raul Heathcote",
"street1": "160 The Maltings",
"street2": null,
"city": "Reichelchester",
"region": "Kentucky",
"postalCode": "25319",
"countryAlpha2": "IN",
"isDefault": false,
"createdAt": "2025-10-28T23:46:09.346Z"
}