Skip to main content
GET
List available tools

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Query Parameters

q
string

Search keyword for filtering results

Example:

"john doe"

page
number
default:1

Page number (1-based)

Required range: x >= 1
Example:

1

limit
number
default:20

Number of items per page

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

20

offset
number

Number of items to skip (for offset-based pagination)

Required range: x >= 0
Example:

0

sortBy
string

Field name to sort by

Example:

"createdAt"

sortOrder
enum<string>
default:DESC

Sort order

Available options:
ASC,
DESC
Example:

"DESC"

fields
string

Comma-separated list of fields to include in response

Example:

"id,name,email"

category
enum<string>

Filter tools by curated toolkit category id

Available options:
developer-tools-&-devops,
collaboration-&-communication,
ai-&-machine-learning,
document-&-file-management,
productivity-&-project-management,
crm,
analytics-&-data,
entertainment-&-media,
education-&-lms,
design-&-creative-tools,
marketing-&-social-media,
scheduling-&-booking,
e-commerce,
finance-&-accounting,
sales-&-customer-support,
hr-&-recruiting,
social-media,
workflow-automation,
data-&-analytics,
advertising-&-marketing
Example:

"crm"

provider
enum<string>

Filter tools by provider

Available options:
COMPOSIO,
LOCAL
Example:

"LOCAL"

toolkitSlug
string

The slug of the toolkit to filter by

Example:

"slack"

toolSlugs
string

Comma-separated list of specific tool slugs to retrieve (overrides other filters). Must fit in a GET query.

Maximum string length: 2048
Example:

"slack_send_message,slack_get_channels"

authConfigIds
string

Comma-separated list of auth config IDs to filter tools by

Example:

"auth_config_1,auth_config_2"

important
enum<string>

Filter to only show important/featured tools (set to "true" to enable)

Available options:
true,
false
Example:

"true"

tags
string

Filter tools by one or more tags (can be specified multiple times)

Example:

"productivity,communication"

scopes
string

Array of scopes to filter tools by

Example:

"read,write,admin"

includeDeprecated
boolean
default:false

Include deprecated tools in the response

Example:

false

toolkitVersions
string

Toolkit version specification. Use "latest" for latest versions or bracket notation for specific versions per toolkit.

Example:

"latest"

kind
enum<string>
default:actions

Filter by tool kind: "actions" (default, callable tools), "triggers" (webhook/poll), or "all"

Available options:
all,
actions,
triggers
Example:

"actions"

cursor
string

Cursor for pagination. The cursor is a base64 encoded string of the page and limit.

Example:

"eyJwYWdlIjoxLCJsaW1pdCI6MjB9"

Response

200 - application/json

Tools retrieved successfully

success
boolean
required

Success status

Example:

true

message
string
required

Response message

Example:

"Data retrieved successfully"

data
object[]
required

Array of items

Example:
total
number
required

Total number of items across all pages

Example:

100

totalTools
number

Optional secondary total (e.g. nested tools across all matching toolkits)

Example:

5000

page
number

Current page number (1-based)

Example:

1

limit
number

Number of items per page

Example:

20

totalPages
number

Total number of pages

Example:

5

hasNextPage
boolean

Whether there is a next page

Example:

true

hasPreviousPage
boolean

Whether there is a previous page

Example:

false