example-data.com
Menu
Browse docs and collections

showings

showings

Page 10 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": 217,
      "listingId": 82,
      "prospectUserId": 71,
      "scheduledAt": "2026-04-15T18:47:15.284Z",
      "status": "scheduled",
      "notes": "Bellicus tempus rerum currus cotidie uredo.",
      "createdAt": "2026-03-31T06:22:36.723Z"
    },
    {
      "id": 218,
      "listingId": 82,
      "prospectUserId": 48,
      "scheduledAt": "2026-05-06T21:27:56.353Z",
      "status": "no_show",
      "notes": "Sumo perspiciatis calcar cribro.",
      "createdAt": "2026-04-17T13:01:14.105Z"
    },
    {
      "id": 219,
      "listingId": 83,
      "prospectUserId": 116,
      "scheduledAt": "2026-06-03T12:43:43.837Z",
      "status": "completed",
      "notes": "Turpis valens vix clibanus audio quibusdam tener suspendo ventus demo.",
      "createdAt": "2026-05-10T01:44:14.429Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=10&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=11&limit=24",
    "prev": "/api/v1/showings?page=9&limit=24"
  }
}