GET
/
api
/
v1
/
tools
curl --location --request GET 'https://api.rapidagent.ai/api/v1/tools' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>' 
{
  "success": true,
  "data": [
    {
      "id": "cli28c2vd00016itbrlhekwql",
      "name": "My search tool",
      "type": "SEARCH"
    }
  ]
}

Response

success
boolean

Indicates whether the call was successful.

data
object

An array of tool object.

curl --location --request GET 'https://api.rapidagent.ai/api/v1/tools' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>' 
{
  "success": true,
  "data": [
    {
      "id": "cli28c2vd00016itbrlhekwql",
      "name": "My search tool",
      "type": "SEARCH"
    }
  ]
}