Skip to main content
GET
/
proxy
/
tools
/
search
Search toolkits
curl --request GET \
  --url https://api.kylon.io/proxy/tools/search \
  --header 'x-api-key: <api-key>'
{
  "toolkits": [
    {
      "slug": "<string>",
      "name": "<string>",
      "description": "<string>",
      "icon": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Can also be passed as Authorization: Bearer <token>.

Query Parameters

keywords
string
required

Search keywords matched against toolkit slug, name, and description.

limit
integer

Maximum number of results to return.

cursor
string

Pagination cursor from a previous response.

Response

Successful response

toolkits
object[]
required
nextCursor
string | null

Cursor for the next page of results.