> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trailercast.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Decision Rooms



## OpenAPI

````yaml api-reference/openapi.yaml GET /decision-rooms
openapi: 3.1.0
info:
  title: TrailerCast Integration API
  version: 1.0.0
  summary: >-
    Read-only access to call summaries, prospect engagement and Decision Room
    metrics, plus signed webhooks.
  description: >
    Read-only, workspace-scoped API for pulling the deal signals TrailerCast
    captures during a sale,

    and outbound webhooks for near-real-time notification. Start with the guides
    in this section (Introduction, Quickstart, Authentication, Webhooks); the
    endpoint pages below are generated from this spec.


    **Authentication.** Data endpoints take an API key: `Authorization: Bearer
    tck_live_…`.

    Management endpoints take an admin session JWT with the `integrations.crm`
    permission.


    **Pagination.** Every list is keyset-paginated and ascending: `{ data,
    nextCursor, hasMore }`.

    Pass `cursor=<nextCursor>` to continue. `limit` 1–500, default 100.


    **Rate limit.** 300 requests/minute per API key; `429` with `Retry-After`
    when exceeded.


    **Versioning.** Breaking changes ship as a new path (`/api/v2`). Additive
    changes (new fields,

    event types, parameters) may ship at any time; ignore what you do not
    recognise.
  contact:
    name: TrailerCast
    url: https://trailercast.io
servers:
  - url: https://{host}/api/v1
    variables:
      host:
        default: trailercst-backend-production.up.railway.app
        description: Your TrailerCast API host.
  - url: http://localhost:5000/api/v1
    description: Local development
security:
  - apiKey: []
tags:
  - name: Status
  - name: Calls
  - name: Engagement
  - name: Decision Rooms
  - name: Webhook deliveries
  - name: Management — API keys
  - name: Management — Webhooks
paths:
  /decision-rooms:
    get:
      tags:
        - Decision Rooms
      summary: List Decision Rooms, least-recently-active first
      operationId: listRooms
      parameters:
        - $ref: '#/components/parameters/cursorOpaque'
        - $ref: '#/components/parameters/limit'
        - name: updated_since
          in: query
          schema:
            type: string
            format: date-time
          description: Rooms whose lastActivityAt is at or after this instant.
        - name: status
          in: query
          schema:
            type: string
            enum:
              - open
              - won
              - lost
              - dormant
      responses:
        '200':
          description: A page of rooms
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/Page'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/Room'
        '400':
          $ref: '#/components/responses/BadRequest'
components:
  parameters:
    cursorOpaque:
      name: cursor
      in: query
      schema:
        type: string
      description: Opaque cursor from a previous nextCursor. Only valid for this endpoint.
    limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 500
        default: 100
  schemas:
    Page:
      type: object
      required:
        - data
        - nextCursor
        - hasMore
      properties:
        data:
          type: array
          items: {}
        nextCursor:
          type:
            - string
            - 'null'
          description: >-
            Pass back as `cursor`. Returned even when hasMore is false so you
            can resume later. Never expires.
        hasMore:
          type: boolean
    Room:
      type: object
      required:
        - id
        - name
        - status
        - owner
        - createdAt
        - lastActivityAt
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          description: The prospect company name.
        slug:
          type: string
        status:
          $ref: '#/components/schemas/RoomStatus'
        owner:
          $ref: '#/components/schemas/Owner'
        primaryContactEmail:
          type:
            - string
            - 'null'
          format: email
        expectedCloseDate:
          type:
            - string
            - 'null'
          format: date
          description: Calendar date YYYY-MM-DD
          no time zone.: null
        dealValueCents:
          type:
            - integer
            - 'null'
        sourceCallId:
          type:
            - string
            - 'null'
          format: uuid
        createdAt:
          type: string
          format: date-time
        lastActivityAt:
          type: string
          format: date-time
        closedAt:
          type:
            - string
            - 'null'
          format: date-time
    RoomStatus:
      type: string
      enum:
        - open
        - won
        - lost
        - dormant
    Owner:
      type: object
      properties:
        id:
          type: integer
          example: 42
        name:
          type:
            - string
            - 'null'
        email:
          type:
            - string
            - 'null'
          format: email
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable; not stable.
        code:
          type: string
          description: Stable machine code.
  responses:
    BadRequest:
      description: Invalid input
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: cursor is not a valid cursor for this endpoint.
            code: INVALID_CURSOR
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: tck_live_…
      description: Workspace API key minted via POST /api-keys. Read-only.

````