example-data.com
Menu
Browse docs and collections

properties-saved

properties-saved

Page 15 of 16.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties-saved?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties-saved?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/properties-saved.d.ts https://example-data.com/types/properties-saved.d.ts
import type { PropertySaved, ListEnvelope } from "./types/properties-saved";

const res = await fetch(
  "https://example-data.com/api/v1/properties-saved?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<PropertySaved>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties-saved",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 337,
      "userId": 217,
      "propertyId": 95,
      "savedAt": "2024-06-07T02:08:55.707Z"
    },
    {
      "id": 338,
      "userId": 219,
      "propertyId": 186,
      "savedAt": "2026-01-25T08:00:29.655Z"
    },
    {
      "id": 339,
      "userId": 219,
      "propertyId": 122,
      "savedAt": "2024-10-14T20:21:58.747Z"
    }
  ],
  "meta": {
    "page": 15,
    "limit": 24,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=15&limit=24",
    "first": "/api/v1/properties-saved?page=1&limit=24",
    "last": "/api/v1/properties-saved?page=16&limit=24",
    "next": "/api/v1/properties-saved?page=16&limit=24",
    "prev": "/api/v1/properties-saved?page=14&limit=24"
  }
}