example-data.com

addresses / #225

userId
Cindy Barrows @cindy_barrows20
label
other
recipient
May Johnston
street1
7892 Main Street S
street2
city
Considineboro
region
Wyoming
postalCode
51354-6202
countryAlpha2
FR
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/225"
)
addresse = res.json()
{
  "id": 225,
  "userId": 165,
  "label": "other",
  "recipient": "May Johnston",
  "street1": "7892 Main Street S",
  "street2": null,
  "city": "Considineboro",
  "region": "Wyoming",
  "postalCode": "51354-6202",
  "countryAlpha2": "FR",
  "isDefault": false,
  "createdAt": "2025-04-16T12:23:54.859Z"
}
Draftbit