home
- userId
-
Ressie Howell-Hodkiewicz @ressie_howell-hodkiewicz35
- label
- home
- recipient
- Dianne Lockman
- street1
- 717 Macejkovic Points
- street2
- —
- city
- Loweville
- region
- Hawaii
- postalCode
- 09099-3030
- countryAlpha2
- PH
- isDefault
- false
- createdAt
Overview
addresses / #296
home
#296
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/296" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/296" ); 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/296"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/296"
)
addresse = res.json() Response
{
"id": 296,
"userId": 214,
"label": "home",
"recipient": "Dianne Lockman",
"street1": "717 Macejkovic Points",
"street2": null,
"city": "Loweville",
"region": "Hawaii",
"postalCode": "09099-3030",
"countryAlpha2": "PH",
"isDefault": false,
"createdAt": "2025-12-19T00:36:47.567Z"
}