example-data.com

addresses / #164

userId
Telly Sanford @telly.sanford
label
home
recipient
Frederick Sawayn V
street1
96533 Erdman Spurs
street2
city
Aufderharworth
region
Connecticut
postalCode
71980-1073
countryAlpha2
AE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/164"
)
addresse = res.json()
{
  "id": 164,
  "userId": 123,
  "label": "home",
  "recipient": "Frederick Sawayn V",
  "street1": "96533 Erdman Spurs",
  "street2": null,
  "city": "Aufderharworth",
  "region": "Connecticut",
  "postalCode": "71980-1073",
  "countryAlpha2": "AE",
  "isDefault": true,
  "createdAt": "2026-02-11T05:39:18.218Z"
}
Draftbit