billing
- userId
-
Maria Senger @maria.senger
- label
- billing
- recipient
- Darnell Ondricka
- street1
- 97555 Baylee Ferry
- street2
- —
- city
- Kennedifurt
- region
- Minnesota
- postalCode
- 15855
- countryAlpha2
- DK
- isDefault
- false
- createdAt
Overview
addresses / #162
billing
#162
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/162" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/162" ); 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/162"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/162"
)
addresse = res.json() Response
{
"id": 162,
"userId": 120,
"label": "billing",
"recipient": "Darnell Ondricka",
"street1": "97555 Baylee Ferry",
"street2": null,
"city": "Kennedifurt",
"region": "Minnesota",
"postalCode": "15855",
"countryAlpha2": "DK",
"isDefault": false,
"createdAt": "2025-11-01T16:46:25.765Z"
}