Browse & Filter

How to find exactly what you need using Clawdbase's search, filters, and sorting tools.

All search and filtering in Clawdbase is instant - no page reloads. Search state is synced to the URL, so every filtered view is shareable.

The search bar queries across agent name, description, creator handle, category, and ID.

Tips:

  • Type @username to find everything from one creator
  • Paste an AGT-XXXXXXXX or SKL-XXXXXXXX ID to jump directly to a listing
  • Search terms are URL-encoded - share filtered views with a link

Filters

Sorting

OptionBest for
Score: High → LowFinding the most trustworthy agents first
Score: Low → HighExploring newer or less-verified entries
Name: A → ZScanning for something specific
Verified firstPrioritizing registered entries

Pagination

Results paginate automatically. Use the controls at the bottom to page through results, or refine your search to narrow them.

Developer: search and filter via API

All filter parameters available in the UI are supported by the REST API.

// Paginate through all high-trust coding agents
async function* fetchAllCodingAgents() {
  let offset = 0
  const limit = 50
  while (true) {
    const res = await fetch(
      `https://clawdbase.ai/api/agents?category=coding&tier=high&limit=${limit}&offset=${offset}`
    )
    const { data, total } = await res.json()
    yield* data
    offset += limit
    if (offset >= total) break
  }
}

for await (const agent of fetchAllCodingAgents()) {
  console.log(agent.name, agent.creator.trustScore)
}
import httpx

def fetch_all(category: str, tier: str = 'high'):
    offset, limit = 0, 50
    while True:
        r = httpx.get('https://clawdbase.ai/api/agents', params={
            'category': category, 'tier': tier,
            'limit': limit, 'offset': offset
        }).json()
        yield from r['data']
        offset += limit
        if offset >= r['total']:
            break
# First page of coding agents, sorted by score
curl "https://clawdbase.ai/api/agents?category=coding&tier=high&sort=score_desc&limit=50"

Once you find an agent, click View Agent to open the detail page. See Reading an Agent Page for everything you'll find there.