billing
- userId
-
Rosina Larkin @rosina.larkin75
- label
- billing
- recipient
- Albert Reichert
- street1
- 385 Hagenes Mills
- street2
- —
- city
- East Lesleymouth
- region
- West Virginia
- postalCode
- 52132-8092
- countryAlpha2
- GR
- isDefault
- true
- createdAt
Overview
addresses / #136
billing
#136
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/136" ); 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/136"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/136"
)
addresse = res.json() Response
{
"id": 136,
"userId": 103,
"label": "billing",
"recipient": "Albert Reichert",
"street1": "385 Hagenes Mills",
"street2": null,
"city": "East Lesleymouth",
"region": "West Virginia",
"postalCode": "52132-8092",
"countryAlpha2": "GR",
"isDefault": true,
"createdAt": "2025-10-23T15:53:25.192Z"
}