GET
/
tools
curl --request GET \
  --url https://agent-prod.studio.lyzr.ai/v3/tools/ \
  --header 'x-api-key: <api-key>'
{
  "tools": [
    {
      "id": "tool123",
      "name": "Sample Tool",
      "description": "This is a sample tool description.",
      "type": "openapi"
    }
  ]
}

Endpoint

GET /v3/tools/

Description

Retrieves all tools associated with a user.

Authentication

API Key (x-api-key) in the header.

Request

curl -X GET "https://agent-prod.studio.lyzr.ai/v3/tools/" ^
-H "accept: application/json" ^
-H "x-api-key: sk-default-REDACTED"

Response

Returns a list of tools available for the user.


Authorizations

x-api-key
string
header
required

Response

200
application/json

List of tools retrieved successfully

The response is of type object.