showings #338
- listingId
- Townhouse in League City · League City
- prospectUserId
-
Merl Jenkins @merl.jenkins6
- scheduledAt
- status
- no_show
- notes
- Vulnero peior canto tamen inflammatio.
- createdAt
Overview
showings / #338
#338
#338
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/338" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/338" ); 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/338"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/338"
)
showing = res.json() Response
{
"id": 338,
"listingId": 124,
"prospectUserId": 60,
"scheduledAt": "2024-10-10T14:57:58.615Z",
"status": "no_show",
"notes": "Vulnero peior canto tamen inflammatio.",
"createdAt": "2024-10-01T13:34:03.660Z"
}