example-data.com

properties-saved

properties-saved

Page 8 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": 169,
      "userId": 103,
      "propertyId": 74,
      "savedAt": "2025-02-09T20:59:49.286Z"
    },
    {
      "id": 170,
      "userId": 105,
      "propertyId": 65,
      "savedAt": "2024-06-11T05:05:46.120Z"
    },
    {
      "id": 171,
      "userId": 105,
      "propertyId": 64,
      "savedAt": "2024-06-13T01:15:05.300Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=8",
    "next": "/api/v1/properties-saved?page=9",
    "prev": "/api/v1/properties-saved?page=7"
  }
}
Draftbit