example-data.com

addresses / #163

userId
Maria Senger @maria.senger
label
work
recipient
Elijah Rau
street1
291 Kellen Greens
street2
Apt. 482
city
Lake Lessiehaven
region
West Virginia
postalCode
81251
countryAlpha2
KE
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/163"
)
addresse = res.json()
{
  "id": 163,
  "userId": 120,
  "label": "work",
  "recipient": "Elijah Rau",
  "street1": "291 Kellen Greens",
  "street2": "Apt. 482",
  "city": "Lake Lessiehaven",
  "region": "West Virginia",
  "postalCode": "81251",
  "countryAlpha2": "KE",
  "isDefault": false,
  "createdAt": "2026-02-03T11:46:53.626Z"
}
Draftbit