example-data.com

addresses / #94

userId
Florencio Mohr @florencio_mohr
label
other
recipient
Phillip King-MacGyver
street1
4220 Frami Gardens
street2
city
Lake Ethaview
region
Connecticut
postalCode
03505-5886
countryAlpha2
MA
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/94"
)
addresse = res.json()
{
  "id": 94,
  "userId": 71,
  "label": "other",
  "recipient": "Phillip King-MacGyver",
  "street1": "4220 Frami Gardens",
  "street2": null,
  "city": "Lake Ethaview",
  "region": "Connecticut",
  "postalCode": "03505-5886",
  "countryAlpha2": "MA",
  "isDefault": true,
  "createdAt": "2025-12-01T11:53:04.264Z"
}
Draftbit