RunBuggy Token API

The Token API from RunBuggy — 1 operation(s) for token.

Operations 1

POST /login Retrieve token #

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/runbuggy-token-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

runbuggy-token-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Token API
  version: '1.0'
  description: '# [Authentication Guide](https://runbuggy.docs.stoplight.io/guides/authentication-guide)'
  contact:
    name: Runbuggy
    email: support@runbuggy.com
  license:
    name: Copyright © RunBuggy 2020
    url: https://runbuggy.com/terms/
servers:
- url: https://ng-staging.runbuggy.com/staging/api/auth
tags:
- name: Token
paths:
  /login:
    post:
      tags:
      - Token
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/login-response'
        '400':
          description: ''
      summary: Retrieve token
      operationId: login
      description: Retrieve Bearer token.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/login-request'
components:
  schemas:
    login-request:
      type: object
      title: Login Request
      description: Login request
      properties:
        username:
          type: string
          example: admin@mycompany.com
        password:
          type: string
          example: supersecret
      required:
      - username
      - password
    login-response:
      type: object
      title: Login Response
      properties:
        username:
          type: string
          example: admin@mycompany.com
        roles:
          type: array
          example:
          - ROLE_TRANSPORTER
          items:
            type: string
        token_type:
          type: string
          default: Bearer
          example: Bearer
        access_token:
          type: string
          example: 5f410h7qp48naudaonq5toop35rqc391
          description: Used for signing requests.
      required:
      - username
      - roles
      - token_type
      - access_token
x-stoplight:
  docs:
    showModels: false