跳转到主要内容
GET
/
v1
/
security
/
apikeys
列出 API Key
curl --request GET \
  --url https://api.runly.pro/v1/security/apikeys \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 200,
    "message": "OK",
    "trace_id": "tr_keys_list"
  },
  "data": [
    {
      "id": 1,
      "description": "CLI-Tool",
      "created_at": "2024-01-01T00:00:00Z"
    }
  ],
  "usage": {
    "latency_ms": 10
  }
}

授权

Authorization
string
header
必填

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

响应

200 - application/json

密钥列表

status
object
必填
data
object
output
object
usage
object