example-data.com
Menu
Browse docs and collections

showings

showings

Page 7 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": 145,
      "listingId": 55,
      "prospectUserId": 80,
      "scheduledAt": "2026-04-04T15:33:03.993Z",
      "status": "no_show",
      "notes": "Doloremque error villa compono arma cena terebro.",
      "createdAt": "2026-03-31T10:12:33.166Z"
    },
    {
      "id": 146,
      "listingId": 55,
      "prospectUserId": 226,
      "scheduledAt": "2026-02-27T12:24:51.430Z",
      "status": "cancelled",
      "notes": "Ocer quos audentia.",
      "createdAt": "2026-02-15T04:09:36.978Z"
    },
    {
      "id": 147,
      "listingId": 55,
      "prospectUserId": 238,
      "scheduledAt": "2026-03-25T16:56:35.974Z",
      "status": "completed",
      "notes": "Sunt pectus vorago.",
      "createdAt": "2026-03-31T10:06:10.207Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=7&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=8&limit=24",
    "prev": "/api/v1/showings?page=6&limit=24"
  }
}