example-data.com

addresses / #1

userId
Charlene Roberts @charlene_roberts
label
home
recipient
Craig Sauer
street1
8897 Smith Estate
street2
city
Elisabethberg
region
California
postalCode
07860-1214
countryAlpha2
NL
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/1"
)
addresse = res.json()
{
  "id": 1,
  "userId": 1,
  "label": "home",
  "recipient": "Craig Sauer",
  "street1": "8897 Smith Estate",
  "street2": null,
  "city": "Elisabethberg",
  "region": "California",
  "postalCode": "07860-1214",
  "countryAlpha2": "NL",
  "isDefault": true,
  "createdAt": "2026-03-01T07:54:12.590Z"
}
Draftbit