addresses / #191
- userId
-
Clyde Bernier-Gleason @clyde_bernier-gleason6
- label
- billing
- recipient
- Ollie Lind
- street1
- 36531 E 5th Street
- street2
- —
- city
- East Gisselleworth
- region
- Pennsylvania
- postalCode
- 16368
- countryAlpha2
- DE
- isDefault
- false
- createdAt
Component variants
Medium
billing
#191
Small
addresses/191 Related
curl -sS \
"https://example-data.com/api/v1/addresses/191" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/191"
);
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/191"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/191"
)
addresse = res.json() {
"id": 191,
"userId": 143,
"label": "billing",
"recipient": "Ollie Lind",
"street1": "36531 E 5th Street",
"street2": null,
"city": "East Gisselleworth",
"region": "Pennsylvania",
"postalCode": "16368",
"countryAlpha2": "DE",
"isDefault": false,
"createdAt": "2026-01-13T02:59:07.522Z"
}