other
- userId
-
Beau Stiedemann @beau.stiedemann
- label
- other
- recipient
- Miss Kelly Heaney
- street1
- 988 Albany Road
- street2
- —
- city
- Fort Smith
- region
- Wyoming
- postalCode
- 02894
- countryAlpha2
- SA
- isDefault
- false
- createdAt
Overview
addresses / #81
other
#81
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/81" ); const address = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/addresses.d.ts https://example-data.com/types/addresses.d.ts
import type { Address } from "./types/addresses";
const res = await fetch(
"https://example-data.com/api/v1/addresses/81"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/81"
)
addresse = res.json() Response
{
"id": 81,
"userId": 64,
"label": "other",
"recipient": "Miss Kelly Heaney",
"street1": "988 Albany Road",
"street2": null,
"city": "Fort Smith",
"region": "Wyoming",
"postalCode": "02894",
"countryAlpha2": "SA",
"isDefault": false,
"createdAt": "2025-10-25T13:03:14.949Z"
}