OutRival Projects API

The Projects API from OutRival — 4 operation(s) for projects.

Operations 7

GET /rest/v2/projects #
POST /rest/v2/projects #
GET /rest/v2/projects/{id} #
PATCH /rest/v2/projects/{id} #
DELETE /rest/v2/projects/{id} #
GET /rest/v2/projects/{id}/workflows #
GET /rest/v2/projects/{id}/deployments #

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-projects-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

outrival-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OutRival Ai Chat Sessions Projects API
  description: OutRival API documentation.
  version: '1.0'
  contact: {}
servers:
- url: https://api.outrival.com
tags:
- name: Projects
paths:
  /rest/v2/projects:
    get:
      operationId: WorkflowProjectController_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 Projects.
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/PageDto'
                - properties:
                    data:
                      type: array
                      items:
                        $ref: '#/components/schemas/ProjectDto'
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
    post:
      operationId: WorkflowProjectController_createProject
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectDto'
      responses:
        '200':
          description: Create a new project.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDto'
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
  /rest/v2/projects/{id}:
    get:
      operationId: WorkflowProjectController_findOne
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Project by Project ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDto'
        '400':
          description: Project not found.
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
    patch:
      operationId: WorkflowProjectController_updateProject
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProjectDto'
      responses:
        '200':
          description: Update project by Project ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDto'
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
    delete:
      operationId: WorkflowProjectController_deleteProject
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Delete project by Project ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDto'
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
  /rest/v2/projects/{id}/workflows:
    get:
      operationId: WorkflowProjectController_projectWorkflows
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: List of project workflows.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkflowDto'
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
  /rest/v2/projects/{id}/deployments:
    get:
      operationId: WorkflowProjectController_projectWorkflowDeployments
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: List of project workflow deployments.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkflowDeploymentDto'
      tags:
      - Projects
      security:
      - api_key: []
      - bearer: []
components:
  schemas:
    UpdateProjectDto:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
    ProjectDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        template:
          type: boolean
          default: false
      required:
      - id
      - name
    WorkflowModality:
      type: string
      enum:
      - TEXT
      - VOICE
      - SMS
    CreateProjectDto:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
      required:
      - name
    WorkflowType:
      type: string
      enum:
      - SIMPLE
      - ADVANCED
    WorkflowDeploymentDto:
      type: object
      properties:
        id:
          type: string
        type:
          $ref: '#/components/schemas/WorkflowDeploymentType'
        workflowId:
          type: string
        enabled:
          type: boolean
        phoneNumberId:
          type: string
      required:
      - id
      - type
    PageDto:
      type: object
      properties:
        data:
          type: array
          items:
            type: array
        meta:
          $ref: '#/components/schemas/PageMetaDto'
      required:
      - data
      - meta
    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
    WorkflowDeploymentType:
      type: string
      enum:
      - TEXT_IFRAME
      - TEXT_BUBBLE
      - VOICE_BUBBLE
      - VOICE_IFRAME
      - SMS
      - PHONE_OUTBOUND
      - PHONE_INBOUND
      - SLACK
      - API
    WorkflowDto:
      type: object
      properties:
        workflowDeploymentId:
          type: string
        id:
          type: string
        name:
          type: string
        description:
          type: string
        template:
          type: boolean
          default: false
        type:
          $ref: '#/components/schemas/WorkflowType'
        modality:
          $ref: '#/components/schemas/WorkflowModality'
      required:
      - id
      - name
      - type
      - modality
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-Key