showings #448
- listingId
- House in Lake Elsinore · Lake Elsinore
- prospectUserId
-
Izaiah Rempel @izaiah_rempel
- scheduledAt
- status
- scheduled
- notes
- Deporto voluptatum uterque solum caelestis.
- createdAt
Overview
showings / #448
#448
#448
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/448" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/448" ); 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/448"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/448"
)
showing = res.json() Response
{
"id": 448,
"listingId": 168,
"prospectUserId": 31,
"scheduledAt": "2025-04-14T15:45:18.348Z",
"status": "scheduled",
"notes": "Deporto voluptatum uterque solum caelestis.",
"createdAt": "2025-03-19T23:51:55.579Z"
}