work
- userId
-
Earnestine Dickinson @earnestine_dickinson
- label
- work
- recipient
- Michael Bahringer
- street1
- 908 O'Conner Place
- street2
- Apt. 173
- city
- South Julio
- region
- Florida
- postalCode
- 86888-9765
- countryAlpha2
- KE
- isDefault
- true
- createdAt
Overview
addresses / #147
work
#147
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/147" ); 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/147"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/147"
)
addresse = res.json() Response
{
"id": 147,
"userId": 110,
"label": "work",
"recipient": "Michael Bahringer",
"street1": "908 O'Conner Place",
"street2": "Apt. 173",
"city": "South Julio",
"region": "Florida",
"postalCode": "86888-9765",
"countryAlpha2": "KE",
"isDefault": true,
"createdAt": "2025-07-08T04:50:28.802Z"
}