example-data.com
Menu
Browse docs and collections

showings

showings

Page 13 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": 289,
      "listingId": 107,
      "prospectUserId": 241,
      "scheduledAt": "2025-03-17T13:24:24.049Z",
      "status": "scheduled",
      "notes": "Attollo ocer cras vitae tempus paens quo.",
      "createdAt": "2025-03-03T21:57:22.249Z"
    },
    {
      "id": 290,
      "listingId": 107,
      "prospectUserId": 96,
      "scheduledAt": "2026-01-19T04:52:22.793Z",
      "status": "scheduled",
      "notes": "Possimus aggero copia utrum peior aeternus benevolentia.",
      "createdAt": "2026-01-03T18:44:59.611Z"
    },
    {
      "id": 291,
      "listingId": 108,
      "prospectUserId": 204,
      "scheduledAt": "2025-10-29T22:55:42.212Z",
      "status": "completed",
      "notes": "Textilis ubi thorax deduco.",
      "createdAt": "2025-10-06T06:34:20.475Z"
    }
  ],
  "meta": {
    "page": 13,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=13&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=14&limit=24",
    "prev": "/api/v1/showings?page=12&limit=24"
  }
}