example-data.com

properties-saved

properties-saved

Page 3 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": 49,
      "userId": 26,
      "propertyId": 71,
      "savedAt": "2025-01-12T18:04:17.032Z"
    },
    {
      "id": 50,
      "userId": 27,
      "propertyId": 29,
      "savedAt": "2025-06-21T00:40:43.904Z"
    },
    {
      "id": 51,
      "userId": 27,
      "propertyId": 161,
      "savedAt": "2024-12-07T03:52:48.424Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=3",
    "next": "/api/v1/properties-saved?page=4",
    "prev": "/api/v1/properties-saved?page=2"
  }
}
Draftbit