example-data.com

addresses / #195

userId
Jacynthe Sawayn @jacynthe_sawayn71
label
work
recipient
Shirley Torphy
street1
26991 Elta Drive
street2
Apt. 573
city
Port Bernitaside
region
Mississippi
postalCode
75501-0936
countryAlpha2
SG
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/195"
)
addresse = res.json()
{
  "id": 195,
  "userId": 146,
  "label": "work",
  "recipient": "Shirley Torphy",
  "street1": "26991 Elta Drive",
  "street2": "Apt. 573",
  "city": "Port Bernitaside",
  "region": "Mississippi",
  "postalCode": "75501-0936",
  "countryAlpha2": "SG",
  "isDefault": false,
  "createdAt": "2025-05-10T10:28:01.531Z"
}
Draftbit