example-data.com

addresses / #230

userId
Ari Howe @ari.howe73
label
other
recipient
Dr. Ricky O'Kon
street1
77510 Myrtie Mills
street2
city
Floridaberg
region
Arkansas
postalCode
07683
countryAlpha2
BR
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/230"
)
addresse = res.json()
{
  "id": 230,
  "userId": 167,
  "label": "other",
  "recipient": "Dr. Ricky O'Kon",
  "street1": "77510 Myrtie Mills",
  "street2": null,
  "city": "Floridaberg",
  "region": "Arkansas",
  "postalCode": "07683",
  "countryAlpha2": "BR",
  "isDefault": false,
  "createdAt": "2025-01-10T12:16:16.928Z"
}
Draftbit