showings #130
- listingId
- Townhouse in North General · North General
- prospectUserId
-
Earlene Wisozk @earlene.wisozk
- scheduledAt
- status
- scheduled
- notes
- Demo nobis ullus quod nihil tenus voro iure suspendo cogito.
- createdAt
Overview
showings / #130
#130
#130
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/130" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/130" ); 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/130"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/130"
)
showing = res.json() Response
{
"id": 130,
"listingId": 48,
"prospectUserId": 216,
"scheduledAt": "2024-11-15T16:55:00.455Z",
"status": "scheduled",
"notes": "Demo nobis ullus quod nihil tenus voro iure suspendo cogito.",
"createdAt": "2024-11-09T01:45:54.136Z"
}