1. SSH Keys
LightNode
en
  • cn
  • en
  • API Overview
  • API Authentication Guide
  • Instances
    • Create Instance
      POST
    • Delete Instance
      POST
    • Stop Instance
      POST
    • Start Instance
      POST
    • Restart Instance
      POST
    • Reset Password
      POST
    • Instance Details
      GET
    • Reinstall OS
      POST
    • Instance List
      GET
  • Security Groups
    • Security Group List
      GET
  • Images
    • Image List
      GET
  • Async Tasks
    • Get Async Task Result
      GET
  • SSH Keys
    • SSH Key List
      GET
  • Regions
    • Region List
      GET
  • Packages
    • Package List
      GET
  • Schemas
    • Instance Model
  1. SSH Keys

SSH Key List

GET
https://openapi.lightnode.com/sshkey/list

API Overview#

Retrieves the UUIDs of SSH keys.#

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://openapi.lightnode.com/sshkey/list?page=1&pageSize=50' \
--header 'x-open-token: test-token'

Responses

🟢202Success
application/json
Bodyapplication/json

Example
{
    "httpStatus": 202,
    "rowCount": 109,
    "sshKeys": [
        {
            "createTime": "2025-05-23 17:54:03",
            "sshKeyName": "sshkey-demo1",
            "sshKeyUUID": "key-e50000797wyn"
        },
        {
            "createTime": "2025-05-23 17:24:16",
            "sshKeyName": "sshkey-demo2",
            "sshKeyUUID": "key-e50000797vdb"
        }
    ],
    "success": true
}
Modified at 2026-04-10 05:41:02
Previous
Get Async Task Result
Next
Region List
Built with