example-data.com

addresses / #111

userId
Stephan Heller @stephan.heller
label
work
recipient
Geneva Gorczany
street1
345 Chestnut Grove
street2
city
McLean
region
New Hampshire
postalCode
33111-6708
countryAlpha2
CH
isDefault
false
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/addresses/111" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/addresses/111"
);
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/111"
);
const addresse = (await res.json()) as Addresse;
import requests

res = requests.get(
    "https://example-data.com/api/v1/addresses/111"
)
addresse = res.json()
{
  "id": 111,
  "userId": 82,
  "label": "work",
  "recipient": "Geneva Gorczany",
  "street1": "345 Chestnut Grove",
  "street2": null,
  "city": "McLean",
  "region": "New Hampshire",
  "postalCode": "33111-6708",
  "countryAlpha2": "CH",
  "isDefault": false,
  "createdAt": "2026-05-03T07:27:45.729Z"
}
Draftbit