example-data.com

addresses / #16

userId
Alanna Kilback @alanna_kilback31
label
home
recipient
Diane Howe
street1
509 Meadow Way
street2
Suite 679
city
Emilianoland
region
Arkansas
postalCode
62003
countryAlpha2
KE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/16"
)
addresse = res.json()
{
  "id": 16,
  "userId": 14,
  "label": "home",
  "recipient": "Diane Howe",
  "street1": "509 Meadow Way",
  "street2": "Suite 679",
  "city": "Emilianoland",
  "region": "Arkansas",
  "postalCode": "62003",
  "countryAlpha2": "KE",
  "isDefault": true,
  "createdAt": "2024-07-08T17:29:48.392Z"
}
Draftbit