example-data.com

properties-saved

properties-saved

Page 7 of 10.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/properties-saved?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/properties-saved?limit=25"
);
const { data, meta } = await res.json();
import type { PropertiesSaved, ListEnvelope } from "https://example-data.com/types/properties-saved.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties-saved?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<PropertiesSaved>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties-saved",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 145,
      "userId": 87,
      "propertyId": 98,
      "savedAt": "2026-04-29T19:45:27.886Z"
    },
    {
      "id": 146,
      "userId": 88,
      "propertyId": 199,
      "savedAt": "2025-05-08T03:23:54.452Z"
    },
    {
      "id": 147,
      "userId": 91,
      "propertyId": 67,
      "savedAt": "2026-01-28T07:41:35.011Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=7",
    "next": "/api/v1/properties-saved?page=8",
    "prev": "/api/v1/properties-saved?page=6"
  }
}
Draftbit