example-data.com
Menu
Browse docs and collections

Overview

showings / #140

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/showings/140" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/showings/140"
);
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/140"
);
const showing = (await res.json()) as Showing;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/showings/140"
)
showing = res.json()

Response

{
  "id": 140,
  "listingId": 53,
  "prospectUserId": 213,
  "scheduledAt": "2026-05-02T08:55:30.390Z",
  "status": "completed",
  "notes": "Vehemens quasi alveus cribro damno degero libero beatus.",
  "createdAt": "2026-04-28T20:31:43.247Z"
}