example-data.com

showings

showings

Page 5 of 10.

listingId
House in Perris · Perris
prospectUserId
20
scheduledAt
status
no_show
notes
Arca calco cervus error vergo ago.
createdAt
listingId
House in New Carlos · New Carlos
prospectUserId
5
scheduledAt
status
completed
notes
Alii annus unde credo.
createdAt
listingId
Land in Fort King · Fort King
prospectUserId
165
scheduledAt
status
cancelled
notes
Iste cerno maiores optio curtus.
createdAt
listingId
Land in Fort King · Fort King
prospectUserId
19
scheduledAt
status
completed
notes
Vinum decretum molestias.
createdAt
listingId
Land in Fort King · Fort King
prospectUserId
224
scheduledAt
status
cancelled
notes
Civitas certe caelum usitas apto.
createdAt
listingId
House in West Angelita · West Angelita
prospectUserId
166
scheduledAt
status
no_show
notes
Beatus voluptas tabgo.
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/showings?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = await res.json();
import type { Showing, ListEnvelope } from "https://example-data.com/types/showings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/showings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Showing>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/showings",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 97,
      "listingId": 34,
      "prospectUserId": 20,
      "scheduledAt": "2026-05-13T18:43:24.691Z",
      "status": "no_show",
      "notes": "Arca calco cervus error vergo ago.",
      "createdAt": "2026-05-06T22:35:39.375Z"
    },
    {
      "id": 98,
      "listingId": 35,
      "prospectUserId": 5,
      "scheduledAt": "2026-05-10T17:00:32.519Z",
      "status": "completed",
      "notes": "Alii annus unde credo.",
      "createdAt": "2026-04-22T21:28:12.616Z"
    },
    {
      "id": 99,
      "listingId": 36,
      "prospectUserId": 165,
      "scheduledAt": "2025-10-28T15:38:10.418Z",
      "status": "cancelled",
      "notes": "Iste cerno maiores optio curtus.",
      "createdAt": "2025-10-05T08:14:18.460Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=5",
    "next": "/api/v1/showings?page=6",
    "prev": "/api/v1/showings?page=4"
  }
}
Draftbit