example-data.com

addresses / #88

userId
Lamont Huel @lamont.huel
label
other
recipient
Miss Ruth Von
street1
8398 Bartoletti Lights
street2
city
Wilkinsonview
region
Michigan
postalCode
76502
countryAlpha2
JP
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/88"
)
addresse = res.json()
{
  "id": 88,
  "userId": 69,
  "label": "other",
  "recipient": "Miss Ruth Von",
  "street1": "8398 Bartoletti Lights",
  "street2": null,
  "city": "Wilkinsonview",
  "region": "Michigan",
  "postalCode": "76502",
  "countryAlpha2": "JP",
  "isDefault": true,
  "createdAt": "2025-06-06T10:10:00.051Z"
}
Draftbit