other
- userId
-
Lawrence Rogahn @lawrence_rogahn33
- label
- other
- recipient
- Carmen Bauch
- street1
- 83864 Jaydon Creek
- street2
- —
- city
- Denesikbury
- region
- Louisiana
- postalCode
- 26200
- countryAlpha2
- NZ
- isDefault
- false
- createdAt
Overview
addresses / #341
other
#341
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/341" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/341" ); 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/341"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/341"
)
addresse = res.json() Response
{
"id": 341,
"userId": 245,
"label": "other",
"recipient": "Carmen Bauch",
"street1": "83864 Jaydon Creek",
"street2": null,
"city": "Denesikbury",
"region": "Louisiana",
"postalCode": "26200",
"countryAlpha2": "NZ",
"isDefault": false,
"createdAt": "2025-09-18T11:07:24.023Z"
}