> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kanarie.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Ecosystem and category slugs

> Common slug values accepted by Kanarie search and filter endpoints.

Several endpoints accept ecosystem and category filters as slugs. Some project endpoints also accept numeric ID strings for these fields.

## Ecosystems

Common ecosystem slugs include:

```text theme={null}
bitcoin
ethereum
solana
base
optimism
arbitrum
celestia
monad
bsc
aptos
sui
avalanche
polygon
berachain
hyperliquid
near
cosmos
bittensor
ton
tron
cardano
farcaster
```

## Categories

Common category slugs include:

```text theme={null}
defi
derivatives
rwa
nfts
gaming
ai
socialfi
dao
memecoins
stablecoins
rollups
zk
interoperability
depin
wallets
consumer
robotics
prediction-markets
```

Pass slug filters as JSON arrays in POST request bodies.

```bash theme={null}
curl -X POST "https://api.kanarie.xyz/api/v1/projects/filter" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "filter_mode": "direct",
    "ecosystems": ["solana", "base"],
    "categories": ["defi", "ai"]
  }'
```
