work
- userId
-
Amya Powlowski @amya_powlowski32
- label
- work
- recipient
- Bert Jacobson
- street1
- 193 Charles Street
- street2
- —
- city
- Parisianton
- region
- Louisiana
- postalCode
- 60861
- countryAlpha2
- PE
- isDefault
- false
- createdAt
Overview
addresses / #107
work
#107
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/107" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/107" ); 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/107"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/107"
)
addresse = res.json() Response
{
"id": 107,
"userId": 80,
"label": "work",
"recipient": "Bert Jacobson",
"street1": "193 Charles Street",
"street2": null,
"city": "Parisianton",
"region": "Louisiana",
"postalCode": "60861",
"countryAlpha2": "PE",
"isDefault": false,
"createdAt": "2026-03-18T22:04:27.503Z"
}