example-data.com

addresses / #45

userId
Karlee Hudson-Turner @karlee.hudson-turner88
label
billing
recipient
Keith Collins
street1
62669 Faustino Estate
street2
city
New Sally
region
Virginia
postalCode
90249-6048
countryAlpha2
AT
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/45"
)
addresse = res.json()
{
  "id": 45,
  "userId": 36,
  "label": "billing",
  "recipient": "Keith Collins",
  "street1": "62669 Faustino Estate",
  "street2": null,
  "city": "New Sally",
  "region": "Virginia",
  "postalCode": "90249-6048",
  "countryAlpha2": "AT",
  "isDefault": true,
  "createdAt": "2025-03-09T07:36:22.761Z"
}
Draftbit