example-data.com

addresses / #119

userId
Myrl Pollich @myrl.pollich
label
home
recipient
Dwayne Braun
street1
921 Sycamore Street
street2
city
North Forest
region
Kentucky
postalCode
66195-5138
countryAlpha2
PH
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/119"
)
addresse = res.json()
{
  "id": 119,
  "userId": 90,
  "label": "home",
  "recipient": "Dwayne Braun",
  "street1": "921 Sycamore Street",
  "street2": null,
  "city": "North Forest",
  "region": "Kentucky",
  "postalCode": "66195-5138",
  "countryAlpha2": "PH",
  "isDefault": true,
  "createdAt": "2025-07-26T01:30:59.761Z"
}
Draftbit