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
showings #1
- listingId
- Apartment in Alizestad · Alizestad
- prospectUserId
-
Porter Dooley @porter.dooley
- scheduledAt
- status
- cancelled
- notes
- Comis eligendi peccatus error quibusdam.
- createdAt
showings #2
- listingId
- Apartment in Alizestad · Alizestad
- prospectUserId
-
Maria Senger @maria.senger
- scheduledAt
- status
- completed
- notes
- Commemoro amplus defero corrumpo recusandae.
- createdAt
showings #3
- listingId
- Apartment in Alizestad · Alizestad
- prospectUserId
-
Rickie Sporer @rickie.sporer50
- scheduledAt
- status
- completed
- notes
- Cicuta beatae admitto deorsum compono.
- createdAt
showings #4
- listingId
- Apartment in Alizestad · Alizestad
- prospectUserId
-
Lenny Howe @lenny.howe
- scheduledAt
- status
- cancelled
- notes
- Votum vulpes texo angustus stips vilitas nihil agnosco.
- createdAt
showings #5
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
-
Roberta Mueller-Yundt @roberta_mueller-yundt
- scheduledAt
- status
- cancelled
- notes
- Tamen vis clamo.
- createdAt
showings #6
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
-
Florencio Mohr @florencio_mohr
- scheduledAt
- status
- completed
- notes
- Strues ter coaegresco tutis tempora amplus solus.
- createdAt
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
}
}