example-data.com

addresses / #179

userId
Jonas Rath @jonas.rath
label
home
recipient
Yolanda Collier
street1
31077 David Shores
street2
city
East Kariane
region
Wyoming
postalCode
41589-9910
countryAlpha2
TH
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/179"
)
addresse = res.json()
{
  "id": 179,
  "userId": 138,
  "label": "home",
  "recipient": "Yolanda Collier",
  "street1": "31077 David Shores",
  "street2": null,
  "city": "East Kariane",
  "region": "Wyoming",
  "postalCode": "41589-9910",
  "countryAlpha2": "TH",
  "isDefault": true,
  "createdAt": "2025-11-16T10:04:04.197Z"
}
Draftbit