Hopae, Inc. Console - API Keys API

Workspace API key management (Console)

Operations 4

POST /v1/console/api-keys Create workspace API key #
GET /v1/console/api-keys List workspace API keys #
POST /v1/console/api-keys/{id}/revoke Revoke API key #
DELETE /v1/console/api-keys/{id} Delete 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/hopae-inc-console-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 email required.

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

OpenAPI Specification

hopae-inc-console-api-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: hConnect Console - API Keys API
  description: The hConnect API provides a unified interface for electronic identity verification across multiple eID providers globally.
  version: 1.0.0
  contact:
    name: hConnect Support
    url: https://www.hopae.com
    email: dev@hopae.com
servers:
- url: https://sandbox.api.hopae.com/connect
  description: Sandbox Server
tags:
- name: Console - API Keys
  description: Workspace API key management (Console)
paths:
  /v1/console/api-keys:
    post:
      operationId: ConsoleController_createApiKey
      summary: Create workspace API key
      description: Create a new API key for accessing workspace management APIs. The secret is only shown once.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateApiKeyDto'
      responses:
        '201':
          description: API key created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKeyResponseDto'
        '401':
          description: Unauthorized
      tags:
      - Console - API Keys
      security:
      - JWT-auth: []
    get:
      operationId: ConsoleController_listApiKeys
      summary: List workspace API keys
      description: List all API keys for the workspace. Secrets are never returned.
      parameters: []
      responses:
        '200':
          description: List of API keys
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiKeyResponseDto'
        '401':
          description: Unauthorized
      tags:
      - Console - API Keys
      security:
      - JWT-auth: []
  /v1/console/api-keys/{id}/revoke:
    post:
      operationId: ConsoleController_revokeApiKey
      summary: Revoke API key
      description: Revoke an API key. Revoked keys can no longer be used to call workspace APIs.
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: API key revoked successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RevokeApiKeyResponseDto'
        '401':
          description: Unauthorized
        '404':
          description: API key not found
      tags:
      - Console - API Keys
      security:
      - JWT-auth: []
  /v1/console/api-keys/{id}:
    delete:
      operationId: ConsoleController_deleteApiKey
      summary: Delete API key
      description: Delete an API key. Deleted keys can no longer be used to call workspace APIs.
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: API key deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RevokeApiKeyResponseDto'
        '401':
          description: Unauthorized
        '404':
          description: API key not found
      tags:
      - Console - API Keys
      security:
      - JWT-auth: []
components:
  schemas:
    RevokeApiKeyResponseDto:
      type: object
      properties:
        revoked:
          type: boolean
          example: true
      required:
      - revoked
    CreateApiKeyDto:
      type: object
      properties:
        name:
          type: string
          example: Backend CI
      required:
      - name
    ApiKeyResponseDto:
      type: object
      properties:
        id:
          type: string
          example: 507f1f77bcf86cd799439011
        name:
          type: string
          example: Backend CI
        secret:
          type: string
          example: sk_workspace_abc123...
          description: Full API key secret (only returned once at creation time — persist it immediately as it cannot be retrieved later).
        last_used_at:
          type: number
          example: 1731465600
          description: Unix timestamp
        revoked_at:
          type: number
          example: 1731465600
          description: Unix timestamp
        created_at:
          type: number
          example: 1731465600
          description: Unix timestamp
      required:
      - id
      - name
      - secret
      - created_at
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: 'Basic authentication using clientId and clientSecret. For direct API calls, format the Authorization header as `Authorization: Basic <base64(clientId:clientSecret)>`. In the Mintlify playground, enter the clientId and clientSecret in the Basic Auth panel and the header is generated automatically.'
    workspaceApiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Workspace API key authentication. Pass your workspace API key as `Authorization: Bearer sk_workspace_...`.'
    consoleJwt:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Console JWT authentication. Issued by Clerk after Console login.
    workspace-api-key:
      scheme: bearer
      bearerFormat: JWT
      type: http
    app-basic:
      type: http
      scheme: basic