Metabolon Assistant API

The Assistant API from Metabolon — 2 operation(s) for assistant.

Operations 2

POST /api/v1/assistant/token/{tenant} Returns the minted token for the agent widget to pass into the agent api #
POST /api/v2/assistant/token/{tenant} Returns the minted token for the agent widget to pass into the agent api #

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/metabolon-assistant-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

metabolon-assistant-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PortalApi Assistant API
  version: '1.0'
servers:
- url: https://portal-api.prod.metabolon.com
tags:
- name: Assistant
paths:
  /api/v1/assistant/token/{tenant}:
    post:
      tags:
      - Assistant
      summary: Returns the minted token for the agent widget to pass into the agent api
      operationId: Assistant_GetToken
      parameters:
      - name: tenant
        in: path
        required: true
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssistantTokenResponse'
  /api/v2/assistant/token/{tenant}:
    post:
      tags:
      - Assistant
      summary: Returns the minted token for the agent widget to pass into the agent api
      operationId: Assistant_GetToken2
      parameters:
      - name: tenant
        in: path
        required: true
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssistantTokenResponse'
components:
  schemas:
    AssistantTokenResponse:
      type: object
      description: Response model for assistant token endpoint
      additionalProperties: false
      properties:
        token:
          type:
          - string
          - 'null'
        expiresIn:
          type: integer
          format: int32
        tier:
          type:
          - string
          - 'null'
x-generator: NSwag v14.6.2.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0))