work
- userId
-
Jamal Gerhold @jamal.gerhold
- label
- work
- recipient
- Larry Yundt
- street1
- 55762 Oak Street
- street2
- Apt. 518
- city
- Port Eunice
- region
- Rhode Island
- postalCode
- 76650
- countryAlpha2
- NZ
- isDefault
- true
- createdAt
Overview
addresses / #153
work
#153
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/153" ); 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/153"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/153"
)
addresse = res.json() Response
{
"id": 153,
"userId": 115,
"label": "work",
"recipient": "Larry Yundt",
"street1": "55762 Oak Street",
"street2": "Apt. 518",
"city": "Port Eunice",
"region": "Rhode Island",
"postalCode": "76650",
"countryAlpha2": "NZ",
"isDefault": true,
"createdAt": "2025-10-18T03:08:24.896Z"
}