example-data.com

addresses / #122

userId
Velma Jerde @velma.jerde56
label
home
recipient
Sandy Barrows
street1
6851 Elliott Club
street2
Suite 871
city
Anastasiachester
region
New Mexico
postalCode
50633-3182
countryAlpha2
CO
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/122"
)
addresse = res.json()
{
  "id": 122,
  "userId": 93,
  "label": "home",
  "recipient": "Sandy Barrows",
  "street1": "6851 Elliott Club",
  "street2": "Suite 871",
  "city": "Anastasiachester",
  "region": "New Mexico",
  "postalCode": "50633-3182",
  "countryAlpha2": "CO",
  "isDefault": true,
  "createdAt": "2024-10-03T02:33:30.817Z"
}
Draftbit