example-data.com

addresses / #24

userId
Guy Christiansen @guy.christiansen40
label
other
recipient
Pearl Cormier-Bednar DDS
street1
9752 Johnston Extensions
street2
city
West Alycia
region
Arkansas
postalCode
44737-0519
countryAlpha2
MY
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/24"
)
addresse = res.json()
{
  "id": 24,
  "userId": 21,
  "label": "other",
  "recipient": "Pearl Cormier-Bednar DDS",
  "street1": "9752 Johnston Extensions",
  "street2": null,
  "city": "West Alycia",
  "region": "Arkansas",
  "postalCode": "44737-0519",
  "countryAlpha2": "MY",
  "isDefault": true,
  "createdAt": "2025-11-03T15:06:30.455Z"
}
Draftbit