Positron Users API

The users API from Positron — 3 operation(s) for users.

Operations 5

GET /users Gets a list of all users. #
GET /users/{user} Gets a information about a single user. #
PATCH /users/{user} Updates a specific user by user id. #
DELETE /users/{user} Deletes a specific user by user id. #
POST /users/new Create a new user #

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-users-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-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Positron Users API
  version: '1.0'
  description: 'Operations tagged users across 2 of this provider''s published API definitions: positron-admin-openapi.yml, positron-users-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: users
paths:
  /users:
    get:
      summary: Gets a list of all users.
      description: 'Lists the currently available users, providing basic information about each user.

        '
      tags:
      - users
      operationId: listUsers
      responses:
        '200':
          description: returns a list of all users.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Users'
  /users/{user}:
    get:
      summary: Gets a information about a single user.
      description: 'Shows the selected users, providing basic information about each user.

        '
      tags:
      - users
      parameters:
      - name: user
        in: path
        description: The ID of the user to use for this request
        required: true
        schema:
          type: string
      operationId: getUser
      responses:
        '200':
          description: returns information about of a single user.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '404':
          description: The user was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    patch:
      summary: Updates a specific user by user id.
      description: Alters information about the user
      tags:
      - users
      operationId: updateUser
      parameters:
      - name: user
        in: path
        description: The ID of the user to update
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/User'
      responses:
        '200':
          description: successful update
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '400':
          description: invalid information provided to update
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: The user was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    delete:
      summary: Deletes a specific user by user id.
      description: Removes a user from the list of available users
      tags:
      - users
      operationId: deleteUser
      parameters:
      - name: user
        in: path
        description: The ID of the user to use for this request
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful deletion
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '404':
          description: The user was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /users/new:
    post:
      summary: Create a new user
      description: 'Creates a user entry

        '
      tags:
      - users
      operationId: createUser
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/User'
      responses:
        '201':
          description: successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '400':
          description: invalid information provided to server
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        status:
          type: integer
          description: The HTTP status code associated with this error.
        error:
          type: string
          description: The error message.
    Users:
      type: array
      items:
        $ref: '#/components/schemas/User'
    User:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          description: human-readable name for the service node
        email:
          type: string
        avatar:
          type: string
          format: url
        level:
          enum:
          - superuser
          - admin
          - user
x-refined-from:
- positron-admin-openapi.yml
- positron-users-api-openapi.yml