example-data.com
Menu
Browse docs and collections

showings

showings

Page 21 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": 481,
      "listingId": 182,
      "prospectUserId": 181,
      "scheduledAt": "2024-12-11T21:28:49.948Z",
      "status": "completed",
      "notes": "Crastinus vereor vaco admitto colo comptus aiunt adfero.",
      "createdAt": "2024-12-04T08:07:45.398Z"
    },
    {
      "id": 482,
      "listingId": 182,
      "prospectUserId": 163,
      "scheduledAt": "2025-09-02T05:16:16.059Z",
      "status": "cancelled",
      "notes": "Colligo deprimo coepi summisse talus cicuta copiose certe.",
      "createdAt": "2025-09-03T16:14:24.192Z"
    },
    {
      "id": 483,
      "listingId": 183,
      "prospectUserId": 9,
      "scheduledAt": "2025-12-20T17:26:15.832Z",
      "status": "scheduled",
      "notes": "Virtus aggero corroboro trans.",
      "createdAt": "2025-12-08T14:58:49.816Z"
    }
  ],
  "meta": {
    "page": 21,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=21&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": null,
    "prev": "/api/v1/showings?page=20&limit=24"
  }
}