work
- userId
-
Mia Renner @mia.renner47
- label
- work
- recipient
- Lee Bartell
- street1
- 5909 Skyla Course
- street2
- —
- city
- Kayliland
- region
- Indiana
- postalCode
- 51702
- countryAlpha2
- AR
- isDefault
- false
- createdAt
Overview
addresses / #292
work
#292
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/292" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/292" ); 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/292"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/292"
)
addresse = res.json() Response
{
"id": 292,
"userId": 212,
"label": "work",
"recipient": "Lee Bartell",
"street1": "5909 Skyla Course",
"street2": null,
"city": "Kayliland",
"region": "Indiana",
"postalCode": "51702",
"countryAlpha2": "AR",
"isDefault": false,
"createdAt": "2025-06-24T00:43:54.394Z"
}