example-data.com

properties-saved

properties-saved

Page 5 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": 97,
      "userId": 59,
      "propertyId": 68,
      "savedAt": "2026-04-17T21:47:52.991Z"
    },
    {
      "id": 98,
      "userId": 59,
      "propertyId": 126,
      "savedAt": "2024-11-12T13:31:24.054Z"
    },
    {
      "id": 99,
      "userId": 60,
      "propertyId": 145,
      "savedAt": "2025-08-14T02:51:40.016Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=5",
    "next": "/api/v1/properties-saved?page=6",
    "prev": "/api/v1/properties-saved?page=4"
  }
}
Draftbit