example-data.com

properties-saved

properties-saved

Browse 378 properties-saved records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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": 1,
      "userId": 2,
      "propertyId": 112,
      "savedAt": "2025-10-15T16:32:11.870Z"
    },
    {
      "id": 2,
      "userId": 2,
      "propertyId": 50,
      "savedAt": "2024-12-18T16:56:35.795Z"
    },
    {
      "id": 3,
      "userId": 2,
      "propertyId": 181,
      "savedAt": "2025-05-28T19:26:34.018Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 378,
    "totalPages": 16
  },
  "links": {
    "self": "/api/v1/properties-saved?page=1",
    "first": "/api/v1/properties-saved?page=1",
    "last": "/api/v1/properties-saved?page=16",
    "next": "/api/v1/properties-saved?page=2",
    "prev": null
  }
}

View full response →

Draftbit