Happyrobot API Keys API

The API Keys API from Happyrobot — 1 operation(s) for api keys.

Operations 1

GET /api-key/describe Describe the current API key

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/happyrobot-api-keys-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

happyrobot-api-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Happyrobot Public API Keys API
  description: Public API endpoints for Happyrobot
  version: 0.1.1
servers:
- url: https://platform.happyrobot.ai/api/v2
security:
- bearerAuth: []
tags:
- name: API Keys
paths:
  /api-key/describe:
    get:
      summary: Describe the current API key
      tags:
      - API Keys
      description: Returns metadata for the API key used in the Authorization header.
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  orgId:
                    type: string
                  org_slug:
                    type: string
                  org_name:
                    type: string
                  name:
                    type: string
                  prefix:
                    type: string
                  lastFour:
                    type: string
                    minLength: 4
                    maxLength: 4
                  createdAt:
                    type: string
                  lastUsedAt:
                    type:
                    - string
                    - 'null'
                  revokedAt:
                    type:
                    - string
                    - 'null'
                required:
                - id
                - orgId
                - org_slug
                - org_name
                - name
                - prefix
                - lastFour
                - createdAt
                - lastUsedAt
                - revokedAt
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  statusCode:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                  details: {}
                required:
                - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Opaque