GET
/
keys
curl --request GET \
  --url https://pinapi.jackalprotocol.com/api/keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "name": "key1",
      "created_at": "2025-01-28T20:10:48.404857Z"
    },
    {
      "name": "key2",
      "created_at": "2025-01-29T20:10:48.404857Z"
    }
  ],
  "count": 2
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:0

Page number for pagination

limit
integer
default:25

Number of items per page

Response

200
application/json
Successful operation
keys
object[]
Example:
[
  {
    "name": "key1",
    "created_at": "2025-01-28T20:10:48.404857Z"
  },
  {
    "name": "key2",
    "created_at": "2025-01-29T20:10:48.404857Z"
  }
]
count
integer
Example:

2