example-data.com

addresses / #28

userId
Ericka DuBuque @ericka.dubuque
label
work
recipient
William Armstrong III
street1
91688 S 4th Street
street2
city
Weston
region
Maryland
postalCode
31907-3401
countryAlpha2
TH
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/28"
)
addresse = res.json()
{
  "id": 28,
  "userId": 23,
  "label": "work",
  "recipient": "William Armstrong III",
  "street1": "91688 S 4th Street",
  "street2": null,
  "city": "Weston",
  "region": "Maryland",
  "postalCode": "31907-3401",
  "countryAlpha2": "TH",
  "isDefault": false,
  "createdAt": "2025-03-29T08:27:07.025Z"
}
Draftbit