example-data.com

addresses / #178

userId
Mike Zemlak @mike.zemlak96
label
home
recipient
Dr. Lucas Kling
street1
76970 Dax Roads
street2
Suite 706
city
Bossier City
region
New York
postalCode
23824
countryAlpha2
NO
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/178"
)
addresse = res.json()
{
  "id": 178,
  "userId": 136,
  "label": "home",
  "recipient": "Dr. Lucas Kling",
  "street1": "76970 Dax Roads",
  "street2": "Suite 706",
  "city": "Bossier City",
  "region": "New York",
  "postalCode": "23824",
  "countryAlpha2": "NO",
  "isDefault": false,
  "createdAt": "2025-04-28T06:23:33.557Z"
}
Draftbit