work
- userId
-
Malvina Ortiz @malvina_ortiz
- label
- work
- recipient
- Ms. Kristine Senger
- street1
- 28229 Columbia Avenue
- street2
- Suite 715
- city
- West Kalebboro
- region
- Washington
- postalCode
- 26195
- countryAlpha2
- FJ
- isDefault
- false
- createdAt
Overview
addresses / #325
work
#325
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/325" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/325" ); 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/325"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/325"
)
addresse = res.json() Response
{
"id": 325,
"userId": 234,
"label": "work",
"recipient": "Ms. Kristine Senger",
"street1": "28229 Columbia Avenue",
"street2": "Suite 715",
"city": "West Kalebboro",
"region": "Washington",
"postalCode": "26195",
"countryAlpha2": "FJ",
"isDefault": false,
"createdAt": "2026-01-01T16:55:30.579Z"
}