example-data.com

addresses / #101

userId
Jesse Kiehn @jesse_kiehn92
label
home
recipient
Sonja Conn
street1
7467 Albert Road
street2
city
North Vernerville
region
Louisiana
postalCode
26422
countryAlpha2
ET
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/101"
)
addresse = res.json()
{
  "id": 101,
  "userId": 76,
  "label": "home",
  "recipient": "Sonja Conn",
  "street1": "7467 Albert Road",
  "street2": null,
  "city": "North Vernerville",
  "region": "Louisiana",
  "postalCode": "26422",
  "countryAlpha2": "ET",
  "isDefault": false,
  "createdAt": "2024-09-05T09:46:03.756Z"
}
Draftbit