example-data.com

addresses / #85

userId
Kaden Brekke @kaden_brekke
label
other
recipient
Joann Schroeder-Runolfsdottir
street1
3647 10th Street
street2
city
Lake Vivianefield
region
New Mexico
postalCode
78927
countryAlpha2
KE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/85"
)
addresse = res.json()
{
  "id": 85,
  "userId": 67,
  "label": "other",
  "recipient": "Joann Schroeder-Runolfsdottir",
  "street1": "3647 10th Street",
  "street2": null,
  "city": "Lake Vivianefield",
  "region": "New Mexico",
  "postalCode": "78927",
  "countryAlpha2": "KE",
  "isDefault": true,
  "createdAt": "2026-05-19T20:23:03.735Z"
}
Draftbit