example-data.com
Menu
Browse docs and collections

showings

showings

Page 11 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": 241,
      "listingId": 90,
      "prospectUserId": 26,
      "scheduledAt": "2026-05-16T05:41:35.886Z",
      "status": "completed",
      "notes": "Temptatio commodo voco conitor uberrime deludo.",
      "createdAt": "2026-04-22T07:22:59.217Z"
    },
    {
      "id": 242,
      "listingId": 91,
      "prospectUserId": 107,
      "scheduledAt": "2025-10-11T14:50:01.765Z",
      "status": "no_show",
      "notes": "Abeo cumque sumptus maiores congregatio cuppedia appositus vilitas curtus.",
      "createdAt": "2025-09-22T12:17:54.318Z"
    },
    {
      "id": 243,
      "listingId": 92,
      "prospectUserId": 206,
      "scheduledAt": "2026-04-02T08:42:54.419Z",
      "status": "no_show",
      "notes": "Claustrum avaritia angelus sulum sufficio bellicus accusator certe.",
      "createdAt": "2026-03-15T08:20:25.719Z"
    }
  ],
  "meta": {
    "page": 11,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=11&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=12&limit=24",
    "prev": "/api/v1/showings?page=10&limit=24"
  }
}