billing
- userId
-
Florencio Mohr @florencio_mohr
- label
- billing
- recipient
- Alberto Blick I
- street1
- 558 College Street
- street2
- Suite 172
- city
- East Therese
- region
- Maine
- postalCode
- 26582
- countryAlpha2
- TH
- isDefault
- false
- createdAt
Overview
addresses / #95
billing
#95
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/95" ); 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/95"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/95"
)
addresse = res.json() Response
{
"id": 95,
"userId": 71,
"label": "billing",
"recipient": "Alberto Blick I",
"street1": "558 College Street",
"street2": "Suite 172",
"city": "East Therese",
"region": "Maine",
"postalCode": "26582",
"countryAlpha2": "TH",
"isDefault": false,
"createdAt": "2025-01-30T01:22:47.125Z"
}