example-data.com

addresses / #144

userId
Elva Roberts @elva.roberts48
label
shipping
recipient
Jesse Wunsch
street1
454 Hyatt Pike
street2
city
Port Hanktown
region
South Dakota
postalCode
94618
countryAlpha2
EG
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/144"
)
addresse = res.json()
{
  "id": 144,
  "userId": 107,
  "label": "shipping",
  "recipient": "Jesse Wunsch",
  "street1": "454 Hyatt Pike",
  "street2": null,
  "city": "Port Hanktown",
  "region": "South Dakota",
  "postalCode": "94618",
  "countryAlpha2": "EG",
  "isDefault": false,
  "createdAt": "2025-06-25T17:30:41.762Z"
}
Draftbit