example-data.com
Menu
Browse docs and collections

showings

showings

Browse 483 showings records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Showing first 6 of 24 on this page.

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": 1,
      "listingId": 1,
      "prospectUserId": 135,
      "scheduledAt": "2025-08-01T08:26:47.823Z",
      "status": "cancelled",
      "notes": "Comis eligendi peccatus error quibusdam.",
      "createdAt": "2025-08-01T22:59:01.722Z"
    },
    {
      "id": 2,
      "listingId": 1,
      "prospectUserId": 120,
      "scheduledAt": "2025-07-25T12:16:25.011Z",
      "status": "completed",
      "notes": "Commemoro amplus defero corrumpo recusandae.",
      "createdAt": "2025-07-09T04:49:31.337Z"
    },
    {
      "id": 3,
      "listingId": 1,
      "prospectUserId": 149,
      "scheduledAt": "2026-01-07T16:05:15.982Z",
      "status": "completed",
      "notes": "Cicuta beatae admitto deorsum compono.",
      "createdAt": "2025-12-20T03:56:42.468Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 483,
    "totalPages": 20
  },
  "links": {
    "self": "/api/v1/showings?page=1",
    "first": "/api/v1/showings?page=1",
    "last": "/api/v1/showings?page=20",
    "next": "/api/v1/showings?page=2",
    "prev": null
  }
}

View full response →