example-data.com

showings

showings

Browse 483 showings records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

listingId
Apartment in Alizestad · Alizestad
prospectUserId
135
scheduledAt
status
cancelled
notes
Comis eligendi peccatus error quibusdam.
createdAt
listingId
Apartment in Alizestad · Alizestad
prospectUserId
120
scheduledAt
status
completed
notes
Commemoro amplus defero corrumpo recusandae.
createdAt
listingId
Apartment in Alizestad · Alizestad
prospectUserId
149
scheduledAt
status
completed
notes
Cicuta beatae admitto deorsum compono.
createdAt
listingId
Apartment in Alizestad · Alizestad
prospectUserId
37
scheduledAt
status
cancelled
notes
Votum vulpes texo angustus stips vilitas nihil agnosco.
createdAt
listingId
House in New Otiliatown · New Otiliatown
prospectUserId
162
scheduledAt
status
cancelled
notes
Tamen vis clamo.
createdAt
listingId
House in New Otiliatown · New Otiliatown
prospectUserId
71
scheduledAt
status
completed
notes
Strues ter coaegresco tutis tempora amplus solus.
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": 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 →

Draftbit