home
- userId
-
Izaiah Rempel @izaiah_rempel
- label
- home
- recipient
- Deborah Carroll
- street1
- 2249 Neha Corners
- street2
- —
- city
- Fort Hansburgh
- region
- Georgia
- postalCode
- 90123-8526
- countryAlpha2
- MX
- isDefault
- false
- createdAt
Overview
addresses / #39
home
#39
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/39" ); 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/39"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/39"
)
addresse = res.json() Response
{
"id": 39,
"userId": 31,
"label": "home",
"recipient": "Deborah Carroll",
"street1": "2249 Neha Corners",
"street2": null,
"city": "Fort Hansburgh",
"region": "Georgia",
"postalCode": "90123-8526",
"countryAlpha2": "MX",
"isDefault": false,
"createdAt": "2026-01-20T13:51:56.975Z"
}