other
- userId
-
Ike Breitenberg @ike.breitenberg
- label
- other
- recipient
- Darrel Welch
- street1
- 425 Cara Unions
- street2
- —
- city
- Coltcester
- region
- Arkansas
- postalCode
- 01107
- countryAlpha2
- PE
- isDefault
- true
- createdAt
Overview
addresses / #96
other
#96
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/96" ); 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/96"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/96"
)
addresse = res.json() Response
{
"id": 96,
"userId": 72,
"label": "other",
"recipient": "Darrel Welch",
"street1": "425 Cara Unions",
"street2": null,
"city": "Coltcester",
"region": "Arkansas",
"postalCode": "01107",
"countryAlpha2": "PE",
"isDefault": true,
"createdAt": "2025-07-15T19:51:57.068Z"
}