GET
/
users
/
apiKeys
curl --request GET \
  --url https://api.pinata.cloud/users/apiKeys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "id": "<string>",
      "name": "<string>",
      "key": "<string>",
      "secret": "<string>",
      "max_uses": 123,
      "uses": 123,
      "user_id": "<string>",
      "scopes": {
        "admin": true
      },
      "revoked": true,
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "count": 123
}

Authorizations

Authorization
string
headerrequired

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

Response

200 - application/json
keys
object[]
count
integer