example-data.com

addresses / #134

userId
Lazaro Rath @lazaro.rath42
label
other
recipient
Ana Ledner
street1
5779 Rosalyn Radial
street2
city
South Payton
region
Kansas
postalCode
64230-4594
countryAlpha2
KE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/134"
)
addresse = res.json()
{
  "id": 134,
  "userId": 102,
  "label": "other",
  "recipient": "Ana Ledner",
  "street1": "5779 Rosalyn Radial",
  "street2": null,
  "city": "South Payton",
  "region": "Kansas",
  "postalCode": "64230-4594",
  "countryAlpha2": "KE",
  "isDefault": true,
  "createdAt": "2025-09-05T01:13:23.965Z"
}
Draftbit