billing
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- label
- billing
- recipient
- Carole Steuber
- street1
- 88155 Barn Close
- street2
- Suite 740
- city
- Muellerbury
- region
- Idaho
- postalCode
- 39984-6170
- countryAlpha2
- FJ
- isDefault
- false
- createdAt
Overview
addresses / #140
billing
#140
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/140" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/140" ); 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/140"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/140"
)
addresse = res.json() Response
{
"id": 140,
"userId": 104,
"label": "billing",
"recipient": "Carole Steuber",
"street1": "88155 Barn Close",
"street2": "Suite 740",
"city": "Muellerbury",
"region": "Idaho",
"postalCode": "39984-6170",
"countryAlpha2": "FJ",
"isDefault": false,
"createdAt": "2026-04-19T10:03:59.480Z"
}