Skip to main content
POST
/
tool
/
list
Python
from superu import SuperU

client = SuperU("YOUR_SUPERU_API_KEY")

payload = {
    "page": 1,
    "per_page": 20,
    "type": "http"
}

response = client.tools.list(**payload)
print(response)
{
  "status": "success",
  "tool_list": [
    {
      "tool_id": "tool_01HXR9259WDZ2X3ZZKQ7HDG4C2",
      "name": "check-user-status",
      "type": "http"
    }
  ],
  "page": 1,
  "per_page": 20
}

Authorizations

superU-Api-Key
string
header
required

Your SuperU API key.

Body

application/json

Request body for List tools.

Tool List Request schema.

page
integer
required

Page value.

Required range: x >= 1
Example:

1

per_page
integer
required

Per page value.

Required range: 1 <= x <= 100
Example:

20

type
string

Optional tool type filter

Example:

"http"

Response

Tool list

Generic Response schema.

status
string

Status value.

Example:

"success"

message
string

Message value.

Example:

"Request completed successfully"

data
object

Data value.