example-data.com

properties-saved

properties-saved

Page 9 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": 193,
      "userId": 122,
      "propertyId": 134,
      "savedAt": "2025-05-08T01:17:07.850Z"
    },
    {
      "id": 194,
      "userId": 122,
      "propertyId": 52,
      "savedAt": "2025-02-12T11:04:27.428Z"
    },
    {
      "id": 195,
      "userId": 123,
      "propertyId": 8,
      "savedAt": "2025-10-04T01:44:01.613Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=9",
    "next": "/api/v1/properties-saved?page=10",
    "prev": "/api/v1/properties-saved?page=8"
  }
}
Draftbit