Webscale Networks SSH Public Keys API

The SSH Public Keys API from Webscale Networks — 2 operation(s) for ssh public keys.

Operations 5

GET /users/{id}/ssh-public-keys Read SSH public key collection #
POST /users/{id}/ssh-public-keys Create an SSH public key #
GET /users/{id}/ssh-public-keys/{key_id} Read an SSH public key #
PATCH /users/{id}/ssh-public-keys/{key_id} Update an SSH public key #
DELETE /users/{id}/ssh-public-keys/{key_id} Delete an SSH public 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/webscale-networks-ssh-public-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

webscale-networks-ssh-public-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Webscale SSH Public Keys API
  version: '2026.273'
  description: The Webscale APIs allow programmatic access to the Webscale services.
servers:
- url: https://api.webscale.com/v2
security:
- access_key: []
tags:
- name: SSH Public Keys
  x-tag-expanded: false
paths:
  /users/{id}/ssh-public-keys:
    get:
      summary: Read SSH public key collection
      description: Returns all the SSH public key resources for the current user.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      tags:
      - SSH Public Keys
      responses:
        '200':
          description: The call was successful.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SshPublicKey'
      operationId: getUsersByIdSshPublicKeys
      x-operation-id-source: derived
    post:
      summary: Create an SSH public key
      description: Creates a new SSH public key and returns the definition.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      tags:
      - SSH Public Keys
      responses:
        '200':
          description: The call was successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SshPublicKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SshPublicKeyPost'
              description: The SSH public key definition.
      operationId: postUsersByIdSshPublicKeys
      x-operation-id-source: derived
  /users/{id}/ssh-public-keys/{key_id}:
    get:
      summary: Read an SSH public key
      tags:
      - SSH Public Keys
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      - name: key_id
        in: path
        required: true
        schema:
          type: string
          description: SSH public key id.
      responses:
        '200':
          description: The call was successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SshPublicKey'
      operationId: getUsersByIdSshPublicKeysByKeyId
      x-operation-id-source: derived
    patch:
      summary: Update an SSH public key
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      - name: key_id
        in: path
        required: true
        schema:
          type: string
          description: SSH public key id.
      tags:
      - SSH Public Keys
      responses:
        '200':
          description: The SSH public key was successfully updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SshPublicKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SshPublicKeyPatch'
              description: The SSH public key parameters to update.
      operationId: patchUsersByIdSshPublicKeysByKeyId
      x-operation-id-source: derived
    delete:
      summary: Delete an SSH public key
      description: Deletes the requested SSH public key.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      - name: key_id
        in: path
        required: true
        schema:
          type: string
          description: SSH public key id.
      tags:
      - SSH Public Keys
      responses:
        '200':
          description: The SSH public key was successfully deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SshPublicKey'
      operationId: deleteUsersByIdSshPublicKeysByKeyId
      x-operation-id-source: derived
components:
  schemas:
    SshPublicKeyPatch:
      type: object
      properties:
        keytext:
          type: string
          description: The text of this SSH public key.
        name:
          type: string
          description: The display name for this SSH public key.
        enabled:
          type: boolean
          default: true
          description: Whether this key is enabled for use during SSH authentication.
      additionalProperties: false
    SshPublicKeyPost:
      type: object
      required:
      - keytext
      properties:
        keytext:
          type: string
          description: The text of this SSH public key.
        name:
          type: string
          description: The display name for this SSH public key.
        enabled:
          type: boolean
          default: true
          description: Whether this key is enabled for use during SSH authentication.
      additionalProperties: false
    SshPublicKey:
      type: object
      required:
      - href
      - keytext
      properties:
        href:
          type: string
          description: The href of this SSH public key.
        keytext:
          type: string
          description: The text of this SSH public key.
        name:
          type: string
          description: The display name for this SSH public key.
        enabled:
          type: boolean
          default: true
          description: Whether this key is enabled for use during SSH authentication.
      additionalProperties: false
  securitySchemes:
    access_key:
      type: http
      scheme: Bearer
      description: "An access key secret must be sent as a\n[bearer token](https://www.rfc-editor.org/rfc/rfc7235#section-5.1)\nwith each HTTP request in an `Authorization` header.  Tokens are obtained\nin one of three ways:\n\n1. Creating an access key in your\n   [user profile](https://control.webscale.com/profile).\n2. Using an access key secret created when a service user is created\n   with the [POST accounts/{id}/service-users](#post-/accounts/-id-/service-users)\n   API.\n3. Obtaining a temporary access key using an existing access key secret\n   for a specified account with the\n   [POST users/self/authorization](#post-/users/-id-/authorization) API.\n"