Cube Planning Chat Messages API

The Chat Messages API from Cube Planning — 2 operation(s) for chat messages.

Operations 3

GET /agents/chat/messages List Chat Messages #
POST /agents/chat/messages Create Chat Message #
GET /agents/chat/messages/{id} Retrieve Chat Message #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/cube-planning-chat-messages-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cube-planning-chat-messages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cube Chat Messages API
  version: 1.0.0 (1.0)
  description: '#### General Description

    An API to access underlying Cube functionality.'
  termsOfService: https://www.cubesoftware.com/terms-of-service
servers:
- url: https://api.cubesoftware.com
  description: Cube API Production URL
tags:
- name: Chat Messages
paths:
  /agents/chat/messages:
    get:
      operationId: agents_chat_messages_retrieve
      description: List chat messages for a specific session. Supports filtering by session ID using the "session" query parameter.
      summary: List Chat Messages
      tags:
      - Chat Messages
      security:
      - OAuth2: []
      responses:
        '200':
          description: No response body
    post:
      operationId: agents_chat_messages_create
      description: Create a new chat message in a session
      summary: Create Chat Message
      tags:
      - Chat Messages
      security:
      - OAuth2: []
      responses:
        '201':
          description: No response body
  /agents/chat/messages/{id}:
    get:
      operationId: agents_chat_messages_retrieve_2
      description: Retrieve a specific chat message by ID
      summary: Retrieve Chat Message
      parameters:
      - in: path
        name: id
        schema:
          type: string
        required: true
      tags:
      - Chat Messages
      security:
      - OAuth2: []
      responses:
        '200':
          description: No response body
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://portal.cubesoftware.com/o/authorize/
          tokenUrl: https://api.cubesoftware.com/o/token/
          scopes: {}
      description: Standard Cube OAuth 2.0 flow