example-data.com

addresses / #183

userId
Chyna Kozey @chyna_kozey80
label
other
recipient
Ms. Lorene Hintz
street1
4352 Wilfredo Ford
street2
Suite 772
city
Catonsville
region
Montana
postalCode
77320
countryAlpha2
ES
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/183"
)
addresse = res.json()
{
  "id": 183,
  "userId": 140,
  "label": "other",
  "recipient": "Ms. Lorene Hintz",
  "street1": "4352 Wilfredo Ford",
  "street2": "Suite 772",
  "city": "Catonsville",
  "region": "Montana",
  "postalCode": "77320",
  "countryAlpha2": "ES",
  "isDefault": false,
  "createdAt": "2026-01-31T18:28:57.887Z"
}
Draftbit