other
- userId
-
Amya Powlowski @amya_powlowski32
- label
- other
- recipient
- Robert Collins-Kemmer Sr.
- street1
- 1620 Lincoln Avenue
- street2
- —
- city
- Port Daren
- region
- Rhode Island
- postalCode
- 15644
- countryAlpha2
- NL
- isDefault
- true
- createdAt
Overview
addresses / #105
other
#105
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/105" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/105" ); 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/105"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/105"
)
addresse = res.json() Response
{
"id": 105,
"userId": 80,
"label": "other",
"recipient": "Robert Collins-Kemmer Sr.",
"street1": "1620 Lincoln Avenue",
"street2": null,
"city": "Port Daren",
"region": "Rhode Island",
"postalCode": "15644",
"countryAlpha2": "NL",
"isDefault": true,
"createdAt": "2025-11-17T18:45:21.353Z"
}