example-data.com

properties-saved

properties-saved

Page 10 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": 217,
      "userId": 140,
      "propertyId": 200,
      "savedAt": "2024-07-14T15:40:59.543Z"
    },
    {
      "id": 218,
      "userId": 141,
      "propertyId": 137,
      "savedAt": "2024-06-01T23:33:24.264Z"
    },
    {
      "id": 219,
      "userId": 142,
      "propertyId": 23,
      "savedAt": "2025-12-03T15:52:53.339Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=10",
    "next": "/api/v1/properties-saved?page=11",
    "prev": "/api/v1/properties-saved?page=9"
  }
}
Draftbit