showings #162
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
-
Conrad Connelly @conrad.connelly22
- scheduledAt
- status
- scheduled
- notes
- Cursim temptatio creptio vomito toties textilis adversus cultellus.
- createdAt
Overview
showings / #162
#162
#162
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/162" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/162" ); 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/162"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/162"
)
showing = res.json() Response
{
"id": 162,
"listingId": 60,
"prospectUserId": 30,
"scheduledAt": "2024-12-16T16:41:15.419Z",
"status": "scheduled",
"notes": "Cursim temptatio creptio vomito toties textilis adversus cultellus.",
"createdAt": "2024-12-08T21:15:47.209Z"
}