example-data.com
Menu
Browse docs and collections

showings

showings

Page 8 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": 169,
      "listingId": 62,
      "prospectUserId": 244,
      "scheduledAt": "2026-05-11T00:38:47.480Z",
      "status": "scheduled",
      "notes": "Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.",
      "createdAt": "2026-05-10T21:49:50.298Z"
    },
    {
      "id": 170,
      "listingId": 62,
      "prospectUserId": 224,
      "scheduledAt": "2025-10-08T11:28:03.218Z",
      "status": "completed",
      "notes": "Tumultus terebro sequi vigilo itaque somnus.",
      "createdAt": "2025-09-25T03:35:26.729Z"
    },
    {
      "id": 171,
      "listingId": 63,
      "prospectUserId": 72,
      "scheduledAt": "2025-11-25T12:21:02.176Z",
      "status": "cancelled",
      "notes": "Vere tui adipisci adiuvo tam admiratio.",
      "createdAt": "2025-11-29T12:15:35.579Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=8&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=9&limit=24",
    "prev": "/api/v1/showings?page=7&limit=24"
  }
}