example-data.com

addresses / #239

userId
Gerald Lind @gerald_lind57
label
home
recipient
Sylvia Hartmann Sr.
street1
3859 Emilie Mills
street2
city
Meredithworth
region
Vermont
postalCode
09354-9907
countryAlpha2
IE
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/239"
)
addresse = res.json()
{
  "id": 239,
  "userId": 179,
  "label": "home",
  "recipient": "Sylvia Hartmann Sr.",
  "street1": "3859 Emilie Mills",
  "street2": null,
  "city": "Meredithworth",
  "region": "Vermont",
  "postalCode": "09354-9907",
  "countryAlpha2": "IE",
  "isDefault": false,
  "createdAt": "2026-02-26T04:22:35.557Z"
}
Draftbit