Revvo Api-keys API

Api key management (requires admin access)

Operations 3

GET /api-keys/fleet/{fleetId} Get details of existing API keys #
PUT /api-keys/fleet/{fleetId} Creates a new API key #
DELETE /api-keys/fleet/{fleetId}/key-id/{keyId} Delete an existing 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/revvo-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

revvo-api-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: revvo-api API Keys API
  version: '0.0'
  description: Api key management (requires admin access)
servers:
- url: https://api.revvo.ai/v0
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Api-keys
  description: Api key management (requires admin access)
paths:
  /api-keys/fleet/{fleetId}:
    get:
      tags:
      - Api-keys
      summary: Get details of existing API keys
      description: List all existing API keys
      operationId: getApiKeys
      parameters:
      - name: fleetId
        in: path
        description: Unique identifier for the fleet. Typically formatted as revvo-XXXX. This can be found in your admin / integrations / revvo API setup page
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetApiKey200Response'
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
    put:
      tags:
      - Api-keys
      summary: Creates a new API key
      description: Creates a new API key
      operationId: addApiKey
      parameters:
      - name: fleetId
        in: path
        description: Unique identifier for the fleet. Typically formatted as revvo-XXXX. This can be found in your admin / integrations / revvo API setup page
        required: true
        schema:
          type: string
      responses:
        '200':
          description: the generated API key
          content:
            text/plain:
              schema:
                type: string
      security:
      - bearerAuth: []
  /api-keys/fleet/{fleetId}/key-id/{keyId}:
    delete:
      tags:
      - Api-keys
      summary: Delete an existing API key
      description: Delete an existing API key
      operationId: deleteApiKey
      parameters:
      - name: fleetId
        in: path
        description: Unique identifier for the fleet. Typically formatted as revvo-XXXX. This can be found in your admin / integrations / revvo API setup page
        required: true
        schema:
          type: string
      - name: keyId
        in: path
        description: Key id to delete, must be one of the values returned bu the get method
        required: true
        schema:
          type: string
      responses:
        '200':
          description: deleteApiKey 200 response
      security:
      - bearerAuth: []
components:
  schemas:
    GetApiKey200Response:
      required:
      - value
      type: object
      properties:
        value:
          type: array
          items:
            $ref: '#/components/schemas/ApiKeyData'
    ApiKeyData:
      required:
      - creationTimestamp
      - expirationTimestamp
      - keyId
      type: object
      properties:
        keyId:
          type: string
        creationTimestamp:
          type: integer
          format: int64
        expirationTimestamp:
          type: integer
          format: int64
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT