shipping
- userId
-
Koby Pouros @koby_pouros60
- label
- shipping
- recipient
- Russell Adams
- street1
- 3556 Grant Centers
- street2
- —
- city
- Port Hank
- region
- Wisconsin
- postalCode
- 25742-1153
- countryAlpha2
- AR
- isDefault
- true
- createdAt
Overview
addresses / #40
shipping
#40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/40" ); 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/40"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/40"
)
addresse = res.json() Response
{
"id": 40,
"userId": 34,
"label": "shipping",
"recipient": "Russell Adams",
"street1": "3556 Grant Centers",
"street2": null,
"city": "Port Hank",
"region": "Wisconsin",
"postalCode": "25742-1153",
"countryAlpha2": "AR",
"isDefault": true,
"createdAt": "2026-02-14T11:02:51.528Z"
}