billing
- userId
-
Norbert Jacobi @norbert_jacobi92
- label
- billing
- recipient
- Lindsey Wiegand
- street1
- 70118 Weber Haven
- street2
- Apt. 155
- city
- Darrinborough
- region
- Hawaii
- postalCode
- 30614
- countryAlpha2
- NL
- isDefault
- false
- createdAt
Overview
addresses / #133
billing
#133
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/133" ); 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/133"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/133"
)
addresse = res.json() Response
{
"id": 133,
"userId": 101,
"label": "billing",
"recipient": "Lindsey Wiegand",
"street1": "70118 Weber Haven",
"street2": "Apt. 155",
"city": "Darrinborough",
"region": "Hawaii",
"postalCode": "30614",
"countryAlpha2": "NL",
"isDefault": false,
"createdAt": "2025-06-04T18:56:53.112Z"
}