other
- userId
-
Minerva Hettinger @minerva_hettinger
- label
- other
- recipient
- Jordan D'Amore-Rowe
- street1
- 850 McLaughlin Keys
- street2
- —
- city
- Muellercester
- region
- Kentucky
- postalCode
- 44822
- countryAlpha2
- FJ
- isDefault
- false
- createdAt
Overview
addresses / #247
other
#247
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/247" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/247" ); 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/247"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/247"
)
addresse = res.json() Response
{
"id": 247,
"userId": 183,
"label": "other",
"recipient": "Jordan D'Amore-Rowe",
"street1": "850 McLaughlin Keys",
"street2": null,
"city": "Muellercester",
"region": "Kentucky",
"postalCode": "44822",
"countryAlpha2": "FJ",
"isDefault": false,
"createdAt": "2025-11-22T08:25:01.782Z"
}