example-data.com

addresses / #48

userId
Margaretta Barrows @margaretta_barrows41
label
work
recipient
Alvin Kilback
street1
67663 Kilback Field
street2
city
Lake Justineshire
region
Idaho
postalCode
32930
countryAlpha2
IS
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/48"
)
addresse = res.json()
{
  "id": 48,
  "userId": 39,
  "label": "work",
  "recipient": "Alvin Kilback",
  "street1": "67663 Kilback Field",
  "street2": null,
  "city": "Lake Justineshire",
  "region": "Idaho",
  "postalCode": "32930",
  "countryAlpha2": "IS",
  "isDefault": true,
  "createdAt": "2025-11-20T17:11:56.150Z"
}
Draftbit