Skip to main content
GET
/
v1
/
marketplace
/
search
curl "https://tools.runtools.ai/v1/marketplace/search?q=github" \
  -H "X-API-Key: $RUNTOOLS_API_KEY"
{
  "data": [
    {
      "slug": "github",
      "name": "GitHub",
      "description": "Manage repositories, issues, and pull requests",
      "category": "developer",
      "type": "official",
      "installCount": 1200
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.runtools.ai/llms.txt

Use this file to discover all available pages before exploring further.

Tool Hub marketplace endpoints use:
https://tools.runtools.ai/v1

Query Parameters

q
string
required
Search query.

Response

data
array
Matching marketplace tools.
curl "https://tools.runtools.ai/v1/marketplace/search?q=github" \
  -H "X-API-Key: $RUNTOOLS_API_KEY"
{
  "data": [
    {
      "slug": "github",
      "name": "GitHub",
      "description": "Manage repositories, issues, and pull requests",
      "category": "developer",
      "type": "official",
      "installCount": 1200
    }
  ]
}

Marketplace Listing

curl https://tools.runtools.ai/v1/marketplace \
  -H "X-API-Key: $RUNTOOLS_API_KEY"
const tools = await rt.tools.marketplace({ category: 'developer' });