billing
- userId
-
Jennifer Hoeger @jennifer.hoeger
- label
- billing
- recipient
- Raul Heathcote
- street1
- 160 The Maltings
- street2
- —
- city
- Reichelchester
- region
- Kentucky
- postalCode
- 25319
- countryAlpha2
- IN
- isDefault
- false
- createdAt
Overview
addresses / #160
billing
#160
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/160" ); 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/160"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/160"
)
addresse = res.json() Response
{
"id": 160,
"userId": 119,
"label": "billing",
"recipient": "Raul Heathcote",
"street1": "160 The Maltings",
"street2": null,
"city": "Reichelchester",
"region": "Kentucky",
"postalCode": "25319",
"countryAlpha2": "IN",
"isDefault": false,
"createdAt": "2025-10-28T23:46:09.346Z"
}