showings #43
- listingId
- House in Lake Sanfordfurt · Lake Sanfordfurt
- prospectUserId
-
Celia D'Amore @celia_damore
- scheduledAt
- status
- scheduled
- notes
- Agnitio cruciamentum corrupti sonitus tunc.
- createdAt
Overview
showings / #43
#43
#43
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/43" ); 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/43"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/43"
)
showing = res.json() Response
{
"id": 43,
"listingId": 13,
"prospectUserId": 24,
"scheduledAt": "2024-09-25T19:02:04.427Z",
"status": "scheduled",
"notes": "Agnitio cruciamentum corrupti sonitus tunc.",
"createdAt": "2024-09-24T10:58:31.331Z"
}