work
- userId
-
Emilia Cummerata @emilia_cummerata
- label
- work
- recipient
- Doreen Klein
- street1
- 102 S 7th Street
- street2
- —
- city
- Lake Lesterboro
- region
- Delaware
- postalCode
- 45486
- countryAlpha2
- ID
- isDefault
- true
- createdAt
Overview
addresses / #330
work
#330
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/330" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/330" ); 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/330"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/330"
)
addresse = res.json() Response
{
"id": 330,
"userId": 238,
"label": "work",
"recipient": "Doreen Klein",
"street1": "102 S 7th Street",
"street2": null,
"city": "Lake Lesterboro",
"region": "Delaware",
"postalCode": "45486",
"countryAlpha2": "ID",
"isDefault": true,
"createdAt": "2025-07-10T05:49:20.570Z"
}