billing
- userId
-
Carmel Schultz @carmel.schultz
- label
- billing
- recipient
- Santos Walker
- street1
- 971 Stroman Gateway
- street2
- —
- city
- Placentia
- region
- North Carolina
- postalCode
- 09794-0166
- countryAlpha2
- IN
- isDefault
- true
- createdAt
Overview
addresses / #212
billing
#212
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/212" ); 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/212"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/212"
)
addresse = res.json() Response
{
"id": 212,
"userId": 156,
"label": "billing",
"recipient": "Santos Walker",
"street1": "971 Stroman Gateway",
"street2": null,
"city": "Placentia",
"region": "North Carolina",
"postalCode": "09794-0166",
"countryAlpha2": "IN",
"isDefault": true,
"createdAt": "2025-11-21T05:01:10.942Z"
}