other
- userId
-
Lazaro Herzog @lazaro_herzog
- label
- other
- recipient
- Salvador Moen
- street1
- 29713 E 10th Street
- street2
- Suite 113
- city
- Fort Pierce
- region
- Florida
- postalCode
- 89863
- countryAlpha2
- CA
- isDefault
- false
- createdAt
Overview
addresses / #242
other
#242
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/242" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/242" ); 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/242"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/242"
)
addresse = res.json() Response
{
"id": 242,
"userId": 181,
"label": "other",
"recipient": "Salvador Moen",
"street1": "29713 E 10th Street",
"street2": "Suite 113",
"city": "Fort Pierce",
"region": "Florida",
"postalCode": "89863",
"countryAlpha2": "CA",
"isDefault": false,
"createdAt": "2025-11-12T09:04:15.887Z"
}