home
- userId
-
Norbert Jacobi @norbert_jacobi92
- label
- home
- recipient
- Cesar Sporer
- street1
- 2710 Schoen Ford
- street2
- —
- city
- North Evans
- region
- Delaware
- postalCode
- 05567-7204
- countryAlpha2
- IL
- isDefault
- false
- createdAt
Overview
addresses / #132
home
#132
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/132" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/132" ); 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/132"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/132"
)
addresse = res.json() Response
{
"id": 132,
"userId": 101,
"label": "home",
"recipient": "Cesar Sporer",
"street1": "2710 Schoen Ford",
"street2": null,
"city": "North Evans",
"region": "Delaware",
"postalCode": "05567-7204",
"countryAlpha2": "IL",
"isDefault": false,
"createdAt": "2025-07-09T14:43:26.908Z"
}