example-data.com
Menu
Browse docs and collections

showings

showings

Page 2 of 21.

Overview

Request

curl example

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

JavaScript example

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

TypeScript example

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

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 25,
      "listingId": 7,
      "prospectUserId": 226,
      "scheduledAt": "2026-05-19T13:27:28.764Z",
      "status": "completed",
      "notes": "Constans cupiditate surculus textor dicta triumphus tempora facere.",
      "createdAt": "2026-05-11T10:47:25.318Z"
    },
    {
      "id": 26,
      "listingId": 8,
      "prospectUserId": 65,
      "scheduledAt": "2026-04-29T18:13:35.693Z",
      "status": "completed",
      "notes": "Coadunatio venustas delego cupressus arguo capio.",
      "createdAt": "2026-04-12T05:33:50.211Z"
    },
    {
      "id": 27,
      "listingId": 8,
      "prospectUserId": 95,
      "scheduledAt": "2026-04-24T02:31:17.000Z",
      "status": "scheduled",
      "notes": "Sulum ago adulescens agnitio curiositas talus vester adulatio.",
      "createdAt": "2026-04-25T07:37:47.285Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=2&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=3&limit=24",
    "prev": "/api/v1/showings?page=1&limit=24"
  }
}