showings #159
- listingId
- House in Beaumont · Beaumont
- prospectUserId
-
Sheridan Turcotte @sheridan.turcotte
- scheduledAt
- status
- scheduled
- notes
- Vacuus despecto voluptate beneficium.
- createdAt
Overview
showings / #159
#159
#159
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/159" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/159" ); 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/159"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/159"
)
showing = res.json() Response
{
"id": 159,
"listingId": 59,
"prospectUserId": 153,
"scheduledAt": "2024-06-04T09:26:11.879Z",
"status": "scheduled",
"notes": "Vacuus despecto voluptate beneficium.",
"createdAt": "2024-06-08T15:41:05.282Z"
}