shipping
- userId
-
Esperanza Casper @esperanza_casper
- label
- shipping
- recipient
- Chad Mills
- street1
- 58979 Dashawn Parkways
- street2
- —
- city
- Town 'n' Country
- region
- Maryland
- postalCode
- 77391
- countryAlpha2
- ET
- isDefault
- false
- createdAt
Overview
addresses / #126
shipping
#126
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/126" ); 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/126"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/126"
)
addresse = res.json() Response
{
"id": 126,
"userId": 97,
"label": "shipping",
"recipient": "Chad Mills",
"street1": "58979 Dashawn Parkways",
"street2": null,
"city": "Town 'n' Country",
"region": "Maryland",
"postalCode": "77391",
"countryAlpha2": "ET",
"isDefault": false,
"createdAt": "2026-03-03T22:56:30.808Z"
}