example-data.com

addresses / #151

userId
Arnaldo Friesen @arnaldo_friesen78
label
shipping
recipient
Wilma Grant-Considine
street1
96308 Rosemary Haven
street2
Suite 187
city
Reichertbury
region
Nebraska
postalCode
83384
countryAlpha2
IT
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/151"
)
addresse = res.json()
{
  "id": 151,
  "userId": 113,
  "label": "shipping",
  "recipient": "Wilma Grant-Considine",
  "street1": "96308 Rosemary Haven",
  "street2": "Suite 187",
  "city": "Reichertbury",
  "region": "Nebraska",
  "postalCode": "83384",
  "countryAlpha2": "IT",
  "isDefault": false,
  "createdAt": "2026-05-15T22:59:43.005Z"
}
Draftbit