home
- userId
-
Van Crona @van_crona
- label
- home
- recipient
- Eugene Kutch
- street1
- 706 Bayer Points
- street2
- —
- city
- Lake Mikefurt
- region
- Alaska
- postalCode
- 15832-5298
- countryAlpha2
- AR
- isDefault
- true
- createdAt
Overview
addresses / #248
home
#248
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/248" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/248" ); 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/248"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/248"
)
addresse = res.json() Response
{
"id": 248,
"userId": 185,
"label": "home",
"recipient": "Eugene Kutch",
"street1": "706 Bayer Points",
"street2": null,
"city": "Lake Mikefurt",
"region": "Alaska",
"postalCode": "15832-5298",
"countryAlpha2": "AR",
"isDefault": true,
"createdAt": "2025-10-11T05:51:17.310Z"
}