example-data.com

addresses / #9

userId
Einar Volkman @einar_volkman69
label
shipping
recipient
Jean Carroll DVM
street1
848 Beahan Ramp
street2
Apt. 386
city
South Neha
region
Missouri
postalCode
76895-2815
countryAlpha2
IE
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/9"
)
addresse = res.json()
{
  "id": 9,
  "userId": 7,
  "label": "shipping",
  "recipient": "Jean Carroll DVM",
  "street1": "848 Beahan Ramp",
  "street2": "Apt. 386",
  "city": "South Neha",
  "region": "Missouri",
  "postalCode": "76895-2815",
  "countryAlpha2": "IE",
  "isDefault": false,
  "createdAt": "2025-07-18T00:06:29.854Z"
}
Draftbit