Skip to main content
GET
/
v1
/
bot
/
tool
List Tools
curl --request GET \
  --url https://api.boostgpt.co/v1/bot/tool \
  --header 'Authorization: Bearer <token>'
{
  "tools": [
    {
      "tool": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "server_label": "<string>",
        "server_url": "<string>",
        "transport": "<string>",
        "require_approval": "<string>",
        "headers": {},
        "is_enabled": true,
        "type": "<string>",
        "tools": [
          {
            "name": "<string>",
            "description": "<string>",
            "is_active": true,
            "schema": {}
          }
        ],
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

project_id
string
required

Project ID

bot_id
string
required

Agent ID

page
integer
default:1

Page number

Required range: x >= 1
per_page
integer
default:10

Items per page

Required range: 1 <= x <= 100
filter
string

Filter criteria as JSON string

Response

200 - application/json

Tools retrieved successfully

tools
object[]
pagination
object