work
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- label
- work
- recipient
- Ashley Schamberger Sr.
- street1
- 6911 O'Kon Mill
- street2
- —
- city
- Garrickstad
- region
- Vermont
- postalCode
- 41723
- countryAlpha2
- KR
- isDefault
- true
- createdAt
Overview
addresses / #139
work
#139
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/139" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/139" ); 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/139"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/139"
)
addresse = res.json() Response
{
"id": 139,
"userId": 104,
"label": "work",
"recipient": "Ashley Schamberger Sr.",
"street1": "6911 O'Kon Mill",
"street2": null,
"city": "Garrickstad",
"region": "Vermont",
"postalCode": "41723",
"countryAlpha2": "KR",
"isDefault": true,
"createdAt": "2026-04-21T02:37:16.443Z"
}