showings #260
- listingId
- Apartment in Redding · Redding
- prospectUserId
-
Gavin Lowe @gavin_lowe
- scheduledAt
- status
- scheduled
- notes
- Textus vox antiquus canonicus.
- createdAt
Overview
showings / #260
#260
#260
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/260" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/260" ); const showing = 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 } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/260"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/260"
)
showing = res.json() Response
{
"id": 260,
"listingId": 97,
"prospectUserId": 17,
"scheduledAt": "2026-05-04T07:11:44.370Z",
"status": "scheduled",
"notes": "Textus vox antiquus canonicus.",
"createdAt": "2026-05-10T20:14:08.190Z"
}