OutRival Assistants API
The Assistants API from OutRival — 4 operation(s) for assistants.
The Assistants API from OutRival — 4 operation(s) for assistants.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/outrival-assistants-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: OutRival Ai Chat Sessions Assistants API
description: OutRival API documentation.
version: '1.0'
contact: {}
servers:
- url: https://api.outrival.com
tags:
- name: Assistants
paths:
/rest/v1/assistants:
post:
operationId: AssistantsController_create
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAssistantDto'
responses:
'200':
description: Create AI Assistant.
content:
application/json:
schema:
$ref: '#/components/schemas/Assistant'
tags:
- Assistants
security:
- api_key: []
- bearer: []
get:
operationId: AssistantsController_findAll
parameters:
- name: order
required: false
in: query
schema:
default: desc
enum:
- asc
- desc
type: string
- name: page
required: false
in: query
schema:
minimum: 1
default: 1
type: number
- name: take
required: false
in: query
schema:
minimum: 1
maximum: 100
default: 20
type: number
responses:
'200':
description: Paginated list of AI Assistant.
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/PageDto'
- properties:
data:
type: array
items:
$ref: '#/components/schemas/Assistant'
tags:
- Assistants
security:
- api_key: []
- bearer: []
/rest/v1/assistants/templates:
get:
operationId: AssistantsController_findAllTemplates
parameters:
- name: order
required: false
in: query
schema:
default: desc
enum:
- asc
- desc
type: string
- name: page
required: false
in: query
schema:
minimum: 1
default: 1
type: number
- name: take
required: false
in: query
schema:
minimum: 1
maximum: 100
default: 20
type: number
responses:
'200':
description: List of AI Assistant templates.
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/PageDto'
- properties:
data:
type: array
items:
$ref: '#/components/schemas/Assistant'
tags:
- Assistants
security:
- api_key: []
- bearer: []
/rest/v1/assistants/{id}:
get:
operationId: AssistantsController_findOne
parameters:
- name: id
required: true
in: path
schema:
type: string
responses:
'200':
description: AI Assistant by Assistant ID.
content:
application/json:
schema:
$ref: '#/components/schemas/Assistant'
'400':
description: Assistant not found.
tags:
- Assistants
security:
- api_key: []
- bearer: []
patch:
operationId: AssistantsController_update
parameters:
- name: id
required: true
in: path
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAssistantDto'
responses:
'200':
description: Update specific AI Assistant.
content:
application/json:
schema:
$ref: '#/components/schemas/Assistant'
'400':
description: ''
tags:
- Assistants
security:
- api_key: []
- bearer: []
delete:
operationId: AssistantsController_remove
parameters:
- name: id
required: true
in: path
schema:
type: string
responses:
'200':
description: Delete specific AI Assistant.
content:
application/json:
schema:
$ref: '#/components/schemas/DeleteAssistant'
tags:
- Assistants
security:
- api_key: []
- bearer: []
/rest/v1/assistants/duplicate/{id}:
post:
operationId: AssistantsController_duplicate
parameters:
- name: id
required: true
in: path
schema:
type: string
responses:
'200':
description: Update specific AI Assistant.
content:
application/json:
schema:
$ref: '#/components/schemas/Assistant'
tags:
- Assistants
security:
- api_key: []
- bearer: []
components:
schemas:
CreateAssistantDto:
type: object
properties:
name:
type: string
description:
type: string
variables:
type: object
required:
- name
Assistant:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
template:
type: boolean
default: false
variables:
type: object
required:
- id
- name
UpdateAssistantDto:
type: object
properties:
name:
type: string
description:
type: string
variables:
type: object
DeleteAssistant:
type: object
properties:
id:
type: string
required:
- id
PageMetaDto:
type: object
properties:
page:
type: number
take:
type: number
itemCount:
type: number
pageCount:
type: number
hasPreviousPage:
type: boolean
hasNextPage:
type: boolean
required:
- page
- take
- itemCount
- pageCount
- hasPreviousPage
- hasNextPage
PageDto:
type: object
properties:
data:
type: array
items:
type: array
meta:
$ref: '#/components/schemas/PageMetaDto'
required:
- data
- meta
securitySchemes:
api_key:
type: apiKey
in: header
name: X-API-Key