Seqera Labs ssh-keys API

The ssh-keys API from Seqera Labs — 4 operation(s) for ssh-keys.

Operations 6

GET /ssh-keys List SSH keys #
POST /ssh-keys Create SSH key #
GET /ssh-keys/validate/key Validate SSH key #
GET /ssh-keys/validate/name Validate SSH key name #
DELETE /ssh-keys/{keyId} Delete SSH key #
GET /ssh-keys/{keyId} Describe SSH 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/seqera-labs-ssh-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

seqera-labs-ssh-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: info@seqera.io
    url: https://seqera.io
  description: Seqera Platform services API
  title: Seqera actions Ssh Keys API
  version: 1.181.0
servers:
- url: https://api.cloud.seqera.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: ssh-keys
paths:
  /ssh-keys:
    get:
      description: Retrieves the list of all SSH public keys for the authenticated user.
      operationId: ListSshKeys
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListSshKeysResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: List SSH keys
      tags:
      - ssh-keys
    post:
      description: Creates a new SSH public key with the details in the given request body.
      operationId: CreateSshKey
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSshKeyRequest'
        description: SSH key create request
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSshKeyResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Duplicated element
      security:
      - BearerAuth: []
      summary: Create SSH key
      tags:
      - ssh-keys
  /ssh-keys/validate/key:
    get:
      description: Confirms the availability of the given key for a SSH key in the user context.
      operationId: ValidateSshKey
      parameters:
      - description: SSH key to validate
        in: query
        name: key
        schema:
          type: string
      responses:
        '204':
          description: Ok - No content, if the key is valid.
        '400':
          description: Bad request, if the key is not valid.
        '403':
          description: Operation not allowed.
        '409':
          description: Conflict, key duplicated in the given context.
      security:
      - BearerAuth: []
      summary: Validate SSH key
      tags:
      - ssh-keys
  /ssh-keys/validate/name:
    get:
      description: Confirms the availability of the given name for a SSH key in the user context.
      operationId: ValidateSshKeyName
      parameters:
      - description: SSH key name to validate
        in: query
        name: name
        schema:
          type: string
      responses:
        '204':
          description: Ok - No content, if the name is valid and available.
        '400':
          description: Bad request, if the name is not valid.
        '403':
          description: Operation not allowed.
        '409':
          description: Conflict, name duplicated in the given context.
      security:
      - BearerAuth: []
      summary: Validate SSH key name
      tags:
      - ssh-keys
  /ssh-keys/{keyId}:
    delete:
      description: Deletes the given SSH public key by its ID.
      operationId: DeleteSshKey
      parameters:
      - description: SSH key numeric identifier
        in: path
        name: keyId
        required: true
        schema:
          format: int64
          type: integer
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Delete SSH key
      tags:
      - ssh-keys
    get:
      description: Retrieves the details of an SSH public key by its ID.
      operationId: DescribeSshKey
      parameters:
      - description: SSH key numeric identifier
        in: path
        name: keyId
        required: true
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DescribeSshKeyResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '404':
          description: SSH key not found
      security:
      - BearerAuth: []
      summary: Describe SSH key
      tags:
      - ssh-keys
components:
  schemas:
    ListSshKeysResponse:
      properties:
        sshKeys:
          items:
            $ref: '#/components/schemas/UserSshPublicKeyDto'
          type: array
      type: object
    CreateSshKeyResponse:
      properties:
        sshKey:
          $ref: '#/components/schemas/UserSshPublicKeyDto'
      type: object
    DescribeSshKeyResponse:
      properties:
        sshKey:
          $ref: '#/components/schemas/UserSshPublicKeyDto'
      type: object
    ErrorResponse:
      properties:
        message:
          type: string
      required:
      - message
      type: object
    UserSshPublicKeyDto:
      properties:
        dateCreated:
          format: date-time
          type: string
        id:
          format: int64
          type: integer
        lastUsed:
          format: date-time
          type: string
        name:
          type: string
        publicKey:
          type: string
      type: object
    CreateSshKeyRequest:
      properties:
        name:
          type: string
        publicKey:
          type: string
      required:
      - name
      - publicKey
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http