example-data.com

addresses / #43

userId
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
label
home
recipient
Ora Hane
street1
39525 Western Avenue
street2
city
New Monserratstead
region
Rhode Island
postalCode
33903-9123
countryAlpha2
IE
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/43"
)
addresse = res.json()
{
  "id": 43,
  "userId": 35,
  "label": "home",
  "recipient": "Ora Hane",
  "street1": "39525 Western Avenue",
  "street2": null,
  "city": "New Monserratstead",
  "region": "Rhode Island",
  "postalCode": "33903-9123",
  "countryAlpha2": "IE",
  "isDefault": false,
  "createdAt": "2025-07-20T20:06:58.381Z"
}
Draftbit