addresses / #133
- userId
-
Norbert Jacobi @norbert_jacobi92
- label
- billing
- recipient
- Lindsey Wiegand
- street1
- 70118 Weber Haven
- street2
- Apt. 155
- city
- Darrinborough
- region
- Hawaii
- postalCode
- 30614
- countryAlpha2
- NL
- isDefault
- false
- createdAt
Component variants
Medium
billing
#133
Small
addresses/133 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/133" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/133"
);
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/133"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/133"
)
addresse = res.json() {
"id": 133,
"userId": 101,
"label": "billing",
"recipient": "Lindsey Wiegand",
"street1": "70118 Weber Haven",
"street2": "Apt. 155",
"city": "Darrinborough",
"region": "Hawaii",
"postalCode": "30614",
"countryAlpha2": "NL",
"isDefault": false,
"createdAt": "2025-06-04T18:56:53.112Z"
}