example-data.com

addresses / #25

userId
Antoinette Greenfelder @antoinette_greenfelder61
label
other
recipient
Tanya Grady
street1
677 Mayert Plaza
street2
Suite 434
city
West Flavio
region
Indiana
postalCode
42311
countryAlpha2
NZ
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/25"
)
addresse = res.json()
{
  "id": 25,
  "userId": 22,
  "label": "other",
  "recipient": "Tanya Grady",
  "street1": "677 Mayert Plaza",
  "street2": "Suite 434",
  "city": "West Flavio",
  "region": "Indiana",
  "postalCode": "42311",
  "countryAlpha2": "NZ",
  "isDefault": true,
  "createdAt": "2025-05-21T00:30:20.940Z"
}
Draftbit