showings #161
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
-
Pinkie Denesik @pinkie_denesik32
- scheduledAt
- status
- scheduled
- notes
- Cogo tutamen derideo cuppedia adulescens.
- createdAt
Overview
showings / #161
#161
#161
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/161" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/161" ); 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/161"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/161"
)
showing = res.json() Response
{
"id": 161,
"listingId": 60,
"prospectUserId": 88,
"scheduledAt": "2025-01-12T19:26:54.718Z",
"status": "scheduled",
"notes": "Cogo tutamen derideo cuppedia adulescens.",
"createdAt": "2024-12-15T17:43:21.590Z"
}