example-data.com

addresses / #116

userId
Pinkie Denesik @pinkie_denesik32
label
other
recipient
Arlene Wuckert V
street1
502 Morar Heights
street2
city
Glendora
region
Montana
postalCode
79837-2533
countryAlpha2
NL
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/116"
)
addresse = res.json()
{
  "id": 116,
  "userId": 88,
  "label": "other",
  "recipient": "Arlene Wuckert V",
  "street1": "502 Morar Heights",
  "street2": null,
  "city": "Glendora",
  "region": "Montana",
  "postalCode": "79837-2533",
  "countryAlpha2": "NL",
  "isDefault": true,
  "createdAt": "2025-04-13T16:36:13.718Z"
}
Draftbit