example-data.com
Menu
Browse docs and collections

showings

showings

Page 15 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": 337,
      "listingId": 123,
      "prospectUserId": 242,
      "scheduledAt": "2026-01-01T10:50:09.779Z",
      "status": "completed",
      "notes": "Vacuus subnecto demens quidem convoco ceno apostolus antiquus corrupti curtus.",
      "createdAt": "2025-12-25T07:26:24.803Z"
    },
    {
      "id": 338,
      "listingId": 124,
      "prospectUserId": 60,
      "scheduledAt": "2024-10-10T14:57:58.615Z",
      "status": "no_show",
      "notes": "Vulnero peior canto tamen inflammatio.",
      "createdAt": "2024-10-01T13:34:03.660Z"
    },
    {
      "id": 339,
      "listingId": 124,
      "prospectUserId": 140,
      "scheduledAt": "2025-02-26T03:29:41.888Z",
      "status": "scheduled",
      "notes": "Subvenio creber sponte.",
      "createdAt": "2025-02-09T08:06:08.590Z"
    }
  ],
  "meta": {
    "page": 15,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=15&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=16&limit=24",
    "prev": "/api/v1/showings?page=14&limit=24"
  }
}