example-data.com
Menu
Browse docs and collections

showings

showings

Page 20 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": 457,
      "listingId": 172,
      "prospectUserId": 184,
      "scheduledAt": "2026-06-17T01:58:00.959Z",
      "status": "no_show",
      "notes": "Sulum calcar tibi tubineus xiphias crepusculum utor.",
      "createdAt": "2026-05-19T23:24:45.382Z"
    },
    {
      "id": 458,
      "listingId": 173,
      "prospectUserId": 166,
      "scheduledAt": "2025-06-03T00:07:24.799Z",
      "status": "no_show",
      "notes": "Urbanus concedo attero valens concedo.",
      "createdAt": "2025-06-02T17:13:47.675Z"
    },
    {
      "id": 459,
      "listingId": 174,
      "prospectUserId": 213,
      "scheduledAt": "2026-02-19T14:33:42.682Z",
      "status": "completed",
      "notes": "Utrum ducimus creptio calcar cicuta.",
      "createdAt": "2026-02-04T10:04:00.838Z"
    }
  ],
  "meta": {
    "page": 20,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=20&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=21&limit=24",
    "prev": "/api/v1/showings?page=19&limit=24"
  }
}