example-data.com

addresses / #40

userId
Koby Pouros @koby_pouros60
label
shipping
recipient
Russell Adams
street1
3556 Grant Centers
street2
city
Port Hank
region
Wisconsin
postalCode
25742-1153
countryAlpha2
AR
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/40"
)
addresse = res.json()
{
  "id": 40,
  "userId": 34,
  "label": "shipping",
  "recipient": "Russell Adams",
  "street1": "3556 Grant Centers",
  "street2": null,
  "city": "Port Hank",
  "region": "Wisconsin",
  "postalCode": "25742-1153",
  "countryAlpha2": "AR",
  "isDefault": true,
  "createdAt": "2026-02-14T11:02:51.528Z"
}
Draftbit