example-data.com

addresses / #11

userId
Anne Hamill @anne_hamill75
label
work
recipient
Willard Wiegand
street1
7920 Purdy Turnpike
street2
city
Castro Valley
region
Iowa
postalCode
57436
countryAlpha2
IT
isDefault
true
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/addresses/11" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/addresses/11"
);
const addresse = await res.json();
import type { Addresse } from "https://example-data.com/types/addresses.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/addresses/11"
);
const addresse = (await res.json()) as Addresse;
import requests

res = requests.get(
    "https://example-data.com/api/v1/addresses/11"
)
addresse = res.json()
{
  "id": 11,
  "userId": 9,
  "label": "work",
  "recipient": "Willard Wiegand",
  "street1": "7920 Purdy Turnpike",
  "street2": null,
  "city": "Castro Valley",
  "region": "Iowa",
  "postalCode": "57436",
  "countryAlpha2": "IT",
  "isDefault": true,
  "createdAt": "2025-09-26T17:04:28.316Z"
}
Draftbit