showings #385
- listingId
- Commercial Space in Ryanncester · Ryanncester
- prospectUserId
-
Cassidy Boehm @cassidy_boehm22
- scheduledAt
- status
- scheduled
- notes
- Sono ratione cum eos attonbitus tyrannus demergo coerceo.
- createdAt
Overview
showings / #385
#385
#385
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/385" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/385" ); 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/385"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/385"
)
showing = res.json() Response
{
"id": 385,
"listingId": 143,
"prospectUserId": 204,
"scheduledAt": "2025-03-15T18:39:42.013Z",
"status": "scheduled",
"notes": "Sono ratione cum eos attonbitus tyrannus demergo coerceo.",
"createdAt": "2025-02-25T09:36:06.160Z"
}