example-data.com

addresses / #146

userId
Vida Kunde-Koepp @vida_kunde-koepp95
label
work
recipient
Henry Pollich
street1
672 Abdiel Shoals
street2
city
West New York
region
California
postalCode
57402
countryAlpha2
IL
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/146"
)
addresse = res.json()
{
  "id": 146,
  "userId": 109,
  "label": "work",
  "recipient": "Henry Pollich",
  "street1": "672 Abdiel Shoals",
  "street2": null,
  "city": "West New York",
  "region": "California",
  "postalCode": "57402",
  "countryAlpha2": "IL",
  "isDefault": true,
  "createdAt": "2025-07-09T13:02:19.865Z"
}
Draftbit