example-data.com

showings

showings

Page 8 of 10.

listingId
Townhouse in Jettburgh · Jettburgh
prospectUserId
244
scheduledAt
status
scheduled
notes
Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.
createdAt
listingId
Townhouse in Jettburgh · Jettburgh
prospectUserId
224
scheduledAt
status
completed
notes
Tumultus terebro sequi vigilo itaque somnus.
createdAt
listingId
House in West Lemuel · West Lemuel
prospectUserId
72
scheduledAt
status
cancelled
notes
Vere tui adipisci adiuvo tam admiratio.
createdAt
listingId
House in West Lemuel · West Lemuel
prospectUserId
242
scheduledAt
status
completed
notes
Tabernus aspernatur alioqui apparatus coniecto utpote venio antea eum.
createdAt
listingId
House in West Lemuel · West Lemuel
prospectUserId
244
scheduledAt
status
cancelled
notes
Assumenda usque vorax voro villa.
createdAt
listingId
House in West Lemuel · West Lemuel
prospectUserId
149
scheduledAt
status
scheduled
notes
Cohibeo arbitro umerus trado abbas tantillus ea anser.
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": 169,
      "listingId": 62,
      "prospectUserId": 244,
      "scheduledAt": "2026-05-11T00:38:47.480Z",
      "status": "scheduled",
      "notes": "Conicio synagoga suffoco ago vehemens curatio tamdiu tyrannus torrens aegrus.",
      "createdAt": "2026-05-10T21:49:50.298Z"
    },
    {
      "id": 170,
      "listingId": 62,
      "prospectUserId": 224,
      "scheduledAt": "2025-10-08T11:28:03.218Z",
      "status": "completed",
      "notes": "Tumultus terebro sequi vigilo itaque somnus.",
      "createdAt": "2025-09-25T03:35:26.729Z"
    },
    {
      "id": 171,
      "listingId": 63,
      "prospectUserId": 72,
      "scheduledAt": "2025-11-25T12:21:02.176Z",
      "status": "cancelled",
      "notes": "Vere tui adipisci adiuvo tam admiratio.",
      "createdAt": "2025-11-29T12:15:35.579Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 483,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/showings?page=8",
    "next": "/api/v1/showings?page=9",
    "prev": "/api/v1/showings?page=7"
  }
}
Draftbit