example-data.com

addresses / #39

userId
Izaiah Rempel @izaiah_rempel
label
home
recipient
Deborah Carroll
street1
2249 Neha Corners
street2
city
Fort Hansburgh
region
Georgia
postalCode
90123-8526
countryAlpha2
MX
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/39"
)
addresse = res.json()
{
  "id": 39,
  "userId": 31,
  "label": "home",
  "recipient": "Deborah Carroll",
  "street1": "2249 Neha Corners",
  "street2": null,
  "city": "Fort Hansburgh",
  "region": "Georgia",
  "postalCode": "90123-8526",
  "countryAlpha2": "MX",
  "isDefault": false,
  "createdAt": "2026-01-20T13:51:56.975Z"
}
Draftbit