other
- userId
-
Consuelo Borer @consuelo.borer
- label
- other
- recipient
- Marianne Volkman DDS
- street1
- 59517 Barrows Manor
- street2
- Suite 428
- city
- Dallas
- region
- Michigan
- postalCode
- 56615-5302
- countryAlpha2
- NZ
- isDefault
- false
- createdAt
Overview
addresses / #272
other
#272
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/272" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/272" ); 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/272"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/272"
)
addresse = res.json() Response
{
"id": 272,
"userId": 200,
"label": "other",
"recipient": "Marianne Volkman DDS",
"street1": "59517 Barrows Manor",
"street2": "Suite 428",
"city": "Dallas",
"region": "Michigan",
"postalCode": "56615-5302",
"countryAlpha2": "NZ",
"isDefault": false,
"createdAt": "2024-07-19T13:49:12.116Z"
}