GET
/
api
/
v1
/
ssh_keys
/
curl --request GET \
  --url https://api.primeintellect.ai/api/v1/ssh_keys/ \
  --header 'Authorization: Bearer <token>'
{
  "total_count": 0,
  "offset": 0,
  "limit": 100,
  "data": [
    {
      "id": "<string>",
      "userId": "<string>",
      "name": "<string>",
      "publicKey": "<string>",
      "isPrimary": true,
      "isUserKey": true,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

offset
integer
default:0
limit
integer
default:100

Response

200
application/json

Successful Response

The response is of type object.