other
- userId
-
Carley Gleichner @carley.gleichner
- label
- other
- recipient
- Mr. Shane Ernser I
- street1
- 768 N 6th Street
- street2
- Suite 298
- city
- Cicero
- region
- Ohio
- postalCode
- 13948
- countryAlpha2
- FR
- isDefault
- true
- createdAt
Overview
addresses / #186
other
#186
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/186" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/186" ); 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/186"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/186"
)
addresse = res.json() Response
{
"id": 186,
"userId": 142,
"label": "other",
"recipient": "Mr. Shane Ernser I",
"street1": "768 N 6th Street",
"street2": "Suite 298",
"city": "Cicero",
"region": "Ohio",
"postalCode": "13948",
"countryAlpha2": "FR",
"isDefault": true,
"createdAt": "2025-11-30T14:25:08.661Z"
}