Skip to main content
GET
/
oauth
/
grants
List OAuth grants
curl --request GET \
  --url https://api.thundercompute.com:8443/v1/oauth/grants \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "grants": [
    {
      "client_type": "<string>",
      "connected_app_id": "<string>",
      "name": "<string>",
      "permissions": [
        {
          "key": "<string>",
          "label": "<string>"
        }
      ],
      "scopes": [
        "<string>"
      ],
      "description": "<string>",
      "logo_url": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.thundercompute.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication. Provide your API token prefixed with "Bearer ", e.g. "Bearer your-api-token".

Body

application/json

The body is of type object.

Response

OK

grants
object[]
required