OutRival Edges API

The Edges API from OutRival — 2 operation(s) for edges.

Operations 5

GET /rest/v2/edges #
POST /rest/v2/edges #
GET /rest/v2/edges/{id} #
PATCH /rest/v2/edges/{id} #
DELETE /rest/v2/edges/{id} #

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-edges-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-edges-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OutRival Ai Chat Sessions Edges API
  description: OutRival API documentation.
  version: '1.0'
  contact: {}
servers:
- url: https://api.outrival.com
tags:
- name: Edges
paths:
  /rest/v2/edges:
    get:
      operationId: EdgeController_findAll
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Edges
      security:
      - api_key: []
      - bearer: []
    post:
      operationId: EdgeController_createEdge
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateEdgeDto'
      responses:
        '200':
          description: Create new edge.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EdgeDto'
      tags:
      - Edges
      security:
      - api_key: []
      - bearer: []
  /rest/v2/edges/{id}:
    get:
      operationId: EdgeController_findOne
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Get by Edge ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EdgeDto'
      tags:
      - Edges
      security:
      - api_key: []
      - bearer: []
    patch:
      operationId: EdgeController_updateEdge
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateEdgeDto'
      responses:
        '200':
          description: Update by Edge ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EdgeDto'
      tags:
      - Edges
      security:
      - api_key: []
      - bearer: []
    delete:
      operationId: EdgeController_deleteEdge
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Delete by Edge ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EdgeDto'
      tags:
      - Edges
      security:
      - api_key: []
      - bearer: []
components:
  schemas:
    HandlePosition:
      type: string
      enum:
      - LEFT
      - RIGHT
      - TOP
      - BOTTOM
    CreateEdgeDto:
      type: object
      properties:
        workflowId:
          type: string
        sourceNodeId:
          type: string
        targetNodeId:
          type: string
        name:
          type: string
        functionCondition:
          type: string
        sourceHandlePosition:
          $ref: '#/components/schemas/HandlePosition'
        targetHandlePosition:
          $ref: '#/components/schemas/HandlePosition'
      required:
      - workflowId
      - sourceNodeId
      - targetNodeId
    EdgeDto:
      type: object
      properties:
        id:
          type: string
        workflowId:
          type: string
        sourceNodeId:
          type: string
        targetNodeId:
          type: string
        name:
          type: string
        functionCondition:
          type: string
        sourceHandlePosition:
          $ref: '#/components/schemas/HandlePosition'
        targetHandlePosition:
          $ref: '#/components/schemas/HandlePosition'
      required:
      - id
      - workflowId
      - sourceNodeId
      - targetNodeId
    UpdateEdgeDto:
      type: object
      properties:
        workflowId:
          type: string
        sourceNodeId:
          type: string
        targetNodeId:
          type: string
        name:
          type: string
        functionCondition:
          type: string
        sourceHandlePosition:
          $ref: '#/components/schemas/HandlePosition'
        targetHandlePosition:
          $ref: '#/components/schemas/HandlePosition'
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-Key