OutRival Chat with Ai Assistant API

The Chat with Ai Assistant API from OutRival — 2 operation(s) for chat with ai assistant.

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/outrival-chat-with-ai-assistant-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 email required.

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

OpenAPI Specification

outrival-chat-with-ai-assistant-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: OutRival Ai Chat Sessions Chat with Ai Assistant API
  description: OutRival API documentation.
  version: '1.0'
  contact: {}
servers:
- url: https://api.outrival.com
tags:
- name: Chat with Ai Assistant
paths:
  /rest/v1/ai-chats/messages:
    post:
      operationId: MessagesController_create
      summary: Create new message
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateMessageDto'
      responses:
        '404':
          description: Ai Chat doesn't exist
      tags:
      - Chat with Ai Assistant
      security:
      - api_key: []
      - bearer: []
  /rest/v2/ai-chats/messages:
    post:
      operationId: MessagesController_create
      summary: Create new message
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateMessageDto_2'
      responses:
        '404':
          description: Ai Chat doesn't exist
      tags:
      - Chat with Ai Assistant
      security:
      - api_key: []
      - bearer: []
components:
  schemas:
    AiChatChannel:
      type: string
      description: Message channel (text | voice | video)
      enum:
      - SMS
      - VOICE
      - TEXT
    AiChatChannel_2:
      type: string
      enum:
      - SMS
      - VOICE
      - TEXT
    CreateMessageDto:
      type: object
      properties:
        aiChatId:
          type: string
          description: AI Chat ID
        role:
          $ref: '#/components/schemas/AiChatMessageRole'
        channel:
          $ref: '#/components/schemas/AiChatChannel'
        content:
          type: string
          description: Message content
        metadata:
          type: object
          description: Metadata
      required:
      - aiChatId
      - role
      - channel
      - metadata
    AiChatMessageRole:
      type: string
      description: Role of the sender (user | assistant| system | tool)
      enum:
      - ASSISTANT
      - TOOL
      - USER
      - SYSTEM
    CreateMessageDto_2:
      type: object
      properties:
        aiChatId:
          type: string
          description: AI Chat ID
        role:
          $ref: '#/components/schemas/AiChatMessageRole_2'
        channel:
          $ref: '#/components/schemas/AiChatChannel_2'
        content:
          type: string
          description: Message content
      required:
      - aiChatId
      - role
      - channel
    AiChatMessageRole_2:
      type: string
      enum:
      - ASSISTANT
      - TOOL
      - USER
      - SYSTEM
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-Key