example-data.com
Menu
Browse docs and collections

Overview

showings / #12

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 12,
  "listingId": 4,
  "prospectUserId": 119,
  "scheduledAt": "2026-02-02T17:54:13.458Z",
  "status": "no_show",
  "notes": "Solum quo nemo bestia ventito ex synagoga sumo defendo.",
  "createdAt": "2026-01-15T00:03:36.492Z"
}