other
- userId
-
Maymie Boehm @maymie.boehm90
- label
- other
- recipient
- Felix Mann
- street1
- 98605 Rosalinda Junction
- street2
- Apt. 859
- city
- Ondrickaboro
- region
- Nebraska
- postalCode
- 15927
- countryAlpha2
- SA
- isDefault
- false
- createdAt
Overview
addresses / #59
other
#59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/addresses/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/addresses/59" ); 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/59"
);
const address = (await res.json()) as Address; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/59"
)
addresse = res.json() Response
{
"id": 59,
"userId": 48,
"label": "other",
"recipient": "Felix Mann",
"street1": "98605 Rosalinda Junction",
"street2": "Apt. 859",
"city": "Ondrickaboro",
"region": "Nebraska",
"postalCode": "15927",
"countryAlpha2": "SA",
"isDefault": false,
"createdAt": "2025-10-21T12:42:01.074Z"
}