other
- userId
-
Kennith Hahn @kennith.hahn
- label
- other
- recipient
- Josh Davis
- street1
- 150 Woodlands Avenue
- street2
- Suite 273
- city
- South Caroline
- region
- Iowa
- postalCode
- 80120-6467
- countryAlpha2
- AR
- isDefault
- true
- createdAt
Overview
addresses / #273
other
#273
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/273" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/273" ); 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/273"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/273"
)
addresse = res.json() Response
{
"id": 273,
"userId": 201,
"label": "other",
"recipient": "Josh Davis",
"street1": "150 Woodlands Avenue",
"street2": "Suite 273",
"city": "South Caroline",
"region": "Iowa",
"postalCode": "80120-6467",
"countryAlpha2": "AR",
"isDefault": true,
"createdAt": "2025-08-01T12:13:17.164Z"
}