showings #105
- listingId
- House in East Deion · East Deion
- prospectUserId
-
Izaiah Rempel @izaiah_rempel
- scheduledAt
- status
- completed
- notes
- Voluptas speciosus appono synagoga uredo tabesco tabula tactus.
- createdAt
Overview
showings / #105
#105
#105
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/105" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/105" ); 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/105"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/105"
)
showing = res.json() Response
{
"id": 105,
"listingId": 38,
"prospectUserId": 31,
"scheduledAt": "2025-07-02T23:43:29.621Z",
"status": "completed",
"notes": "Voluptas speciosus appono synagoga uredo tabesco tabula tactus.",
"createdAt": "2025-06-30T06:46:05.753Z"
}