example-data.com

addresses / #60

userId
Green Kozey @green_kozey22
label
work
recipient
Ismael Watsica
street1
6034 Jacinthe River
street2
Apt. 218
city
Lake Katrina
region
Arizona
postalCode
72600
countryAlpha2
ZA
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/60"
)
addresse = res.json()
{
  "id": 60,
  "userId": 49,
  "label": "work",
  "recipient": "Ismael Watsica",
  "street1": "6034 Jacinthe River",
  "street2": "Apt. 218",
  "city": "Lake Katrina",
  "region": "Arizona",
  "postalCode": "72600",
  "countryAlpha2": "ZA",
  "isDefault": true,
  "createdAt": "2024-05-30T20:31:03.464Z"
}
Draftbit