example-data.com

addresses / #182

userId
Chyna Kozey @chyna_kozey80
label
other
recipient
Delores Thompson
street1
366 Amparo Forges
street2
Suite 254
city
Sunrise
region
New Jersey
postalCode
36945
countryAlpha2
MY
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/182"
)
addresse = res.json()
{
  "id": 182,
  "userId": 140,
  "label": "other",
  "recipient": "Delores Thompson",
  "street1": "366 Amparo Forges",
  "street2": "Suite 254",
  "city": "Sunrise",
  "region": "New Jersey",
  "postalCode": "36945",
  "countryAlpha2": "MY",
  "isDefault": true,
  "createdAt": "2025-04-19T02:19:05.139Z"
}
Draftbit