example-data.com

addresses / #10

userId
Einar Volkman @einar_volkman69
label
billing
recipient
Adrian Schmitt
street1
76305 Daugherty Trafficway
street2
city
New Myleston
region
New Mexico
postalCode
66415
countryAlpha2
VN
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/10"
)
addresse = res.json()
{
  "id": 10,
  "userId": 7,
  "label": "billing",
  "recipient": "Adrian Schmitt",
  "street1": "76305 Daugherty Trafficway",
  "street2": null,
  "city": "New Myleston",
  "region": "New Mexico",
  "postalCode": "66415",
  "countryAlpha2": "VN",
  "isDefault": false,
  "createdAt": "2026-02-18T01:07:38.836Z"
}
Draftbit