example-data.com

addresses / #153

userId
Jamal Gerhold @jamal.gerhold
label
work
recipient
Larry Yundt
street1
55762 Oak Street
street2
Apt. 518
city
Port Eunice
region
Rhode Island
postalCode
76650
countryAlpha2
NZ
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/153"
)
addresse = res.json()
{
  "id": 153,
  "userId": 115,
  "label": "work",
  "recipient": "Larry Yundt",
  "street1": "55762 Oak Street",
  "street2": "Apt. 518",
  "city": "Port Eunice",
  "region": "Rhode Island",
  "postalCode": "76650",
  "countryAlpha2": "NZ",
  "isDefault": true,
  "createdAt": "2025-10-18T03:08:24.896Z"
}
Draftbit