example-data.com
Menu
Browse docs and collections

showings

showings

Page 4 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": 73,
      "listingId": 24,
      "prospectUserId": 185,
      "scheduledAt": "2026-05-14T16:02:05.677Z",
      "status": "completed",
      "notes": "Delego volup damnatio conturbo deduco commodi tondeo volaticus.",
      "createdAt": "2026-04-16T02:31:32.228Z"
    },
    {
      "id": 74,
      "listingId": 25,
      "prospectUserId": 3,
      "scheduledAt": "2026-05-01T11:54:18.480Z",
      "status": "cancelled",
      "notes": "Vespillo tam tero animadverto id.",
      "createdAt": "2026-04-26T07:30:57.238Z"
    },
    {
      "id": 75,
      "listingId": 26,
      "prospectUserId": 45,
      "scheduledAt": "2025-11-04T20:20:13.199Z",
      "status": "no_show",
      "notes": "Quidem absorbeo amissio aggredior delinquo necessitatibus cruciamentum advoco tego.",
      "createdAt": "2025-10-12T07:27:51.890Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=4&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=5&limit=24",
    "prev": "/api/v1/showings?page=3&limit=24"
  }
}