Positron Service Nodes API

The service_nodes API from Positron — 2 operation(s) for service_nodes.

Operations 3

GET /serviceNodes Gets a list of all service nodes. #
GET /serviceNodes/{node} Gets a specific service node by node id. #
PATCH /serviceNodes/{node} Updates a specific service node by service node 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/positron-service-nodes-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

positron-service-nodes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Positron Service Nodes API
  version: '1.0'
  description: 'Operations tagged service_nodes across 2 of this provider''s published API definitions: positron-admin-openapi.yml, positron-service-nodes-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.positron.ai/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- bearer:
  - API key
tags:
- name: service_nodes
paths:
  /serviceNodes:
    get:
      summary: Gets a list of all service nodes.
      description: 'Lists the currently available service nodes, providing basic information about each node.

        '
      tags:
      - service_nodes
      operationId: listServiceNodes
      responses:
        '200':
          description: returns a list of all service nodes.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceNodes'
  /serviceNodes/{node}:
    get:
      summary: Gets a specific service node by node id.
      description: 'Retrieves a service node instance, providing basic information about the node.

        '
      tags:
      - service_nodes
      operationId: getServiceNode
      parameters:
      - name: node
        in: path
        description: The ID of the node to use for this request
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful retrieval of service node information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceNode'
        '404':
          description: The service node was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    patch:
      summary: Updates a specific service node by service node id.
      description: Alters information about the service node
      tags:
      - service_nodes
      operationId: updateServiceNode
      parameters:
      - name: node
        in: path
        description: The ID of the service node to use for this request
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceNode'
      responses:
        '200':
          description: successful update
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceNode'
        '400':
          description: invalid information provided to update
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: The model was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ServiceNode:
      type: object
      properties:
        id:
          format: uuid
          type: string
        name:
          type: string
          description: human-readable name for the service node
        backend:
          enum:
          - OpenAINode
          - VllmNode
          - GiskardNode
        config:
          type: object
        models:
          oneOf:
          - $ref: '#/components/schemas/Models'
          - $ref: '#/components/schemas/IdList'
    IdList:
      type: array
      items:
        type: string
        format: uuid
    Model:
      type: object
      properties:
        id:
          type: string
          description: The model identifier, which can be referenced in the API endpoints.
        created:
          type: integer
          description: The Unix timestamp (in seconds) when the model was created.
        owned_by:
          type: string
          description: The organization that owns the model
    ServiceNodes:
      type: array
      items:
        $ref: '#/components/schemas/ServiceNode'
    Models:
      type: array
      items:
        $ref: '#/components/schemas/Model'
    Error:
      type: object
      properties:
        status:
          type: integer
          description: The HTTP status code associated with this error.
        error:
          type: string
          description: The error message.
x-refined-from:
- positron-admin-openapi.yml
- positron-service-nodes-api-openapi.yml