example-data.com
Menu
Browse docs and collections

showings

showings

Page 19 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": 433,
      "listingId": 162,
      "prospectUserId": 80,
      "scheduledAt": "2025-07-17T13:58:25.041Z",
      "status": "scheduled",
      "notes": "Auctor concido aptus delicate optio cunae deputo beatae textilis absum.",
      "createdAt": "2025-06-21T09:35:49.609Z"
    },
    {
      "id": 434,
      "listingId": 162,
      "prospectUserId": 90,
      "scheduledAt": "2025-11-21T00:48:50.233Z",
      "status": "scheduled",
      "notes": "Viridis triumphus nemo tergiversatio accommodo vero vindico.",
      "createdAt": "2025-11-06T12:47:46.346Z"
    },
    {
      "id": 435,
      "listingId": 162,
      "prospectUserId": 238,
      "scheduledAt": "2025-12-07T21:45:34.245Z",
      "status": "scheduled",
      "notes": "Speculum accendo copia repellat.",
      "createdAt": "2025-11-14T01:11:40.528Z"
    }
  ],
  "meta": {
    "page": 19,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=19&limit=24",
    "first": "/api/v1/showings?page=1&limit=24",
    "last": "/api/v1/showings?page=21&limit=24",
    "next": "/api/v1/showings?page=20&limit=24",
    "prev": "/api/v1/showings?page=18&limit=24"
  }
}