example-data.com

addresses / #137

userId
Rosina Larkin @rosina.larkin75
label
home
recipient
Ms. Mildred Heller-Kuhn
street1
63696 Halvorson Corner
street2
city
New Bonnie
region
Alaska
postalCode
03219-1409
countryAlpha2
NZ
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/137"
)
addresse = res.json()
{
  "id": 137,
  "userId": 103,
  "label": "home",
  "recipient": "Ms. Mildred Heller-Kuhn",
  "street1": "63696 Halvorson Corner",
  "street2": null,
  "city": "New Bonnie",
  "region": "Alaska",
  "postalCode": "03219-1409",
  "countryAlpha2": "NZ",
  "isDefault": false,
  "createdAt": "2026-05-14T14:41:05.485Z"
}
Draftbit