example-data.com

addresses / #187

userId
Carley Gleichner @carley.gleichner
label
home
recipient
Leigh Bergstrom
street1
528 Carmel Crossing
street2
city
Antoniettaton
region
Texas
postalCode
40521-2215
countryAlpha2
PL
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/187"
)
addresse = res.json()
{
  "id": 187,
  "userId": 142,
  "label": "home",
  "recipient": "Leigh Bergstrom",
  "street1": "528 Carmel Crossing",
  "street2": null,
  "city": "Antoniettaton",
  "region": "Texas",
  "postalCode": "40521-2215",
  "countryAlpha2": "PL",
  "isDefault": false,
  "createdAt": "2025-12-07T08:00:39.786Z"
}
Draftbit