List Projects
Returns a paginated list of projects with signals, coingeckoData, and popularityScore.
Filter Behavior:
- Multi-value filters (projectIds, names, xHandles, tickers) use OR logic within the same filter
- Different filters use AND logic between them
- Example:
names=eth,btc&tickers=SOLreturns projects matching (name=eth OR name=btc) AND ticker=SOL
Authorization
ApiKeyAuth x-api-key<token>
API key to authorize requests
In: header
Query Parameters
page?integer
Page number (1-indexed)
Default
1limit?integer
Number of projects per page (max 50)
Default
50Range
value <= 50projectIds?string
Comma-separated list of project ObjectIds to filter by
names?string
Comma-separated list of project names to filter by (case-insensitive regex)
xHandles?string
Comma-separated list of X/Twitter handles to filter by
tickers?string
Comma-separated list of token tickers to filter by
chain?string
Filter by blockchain platform. See /projects/chains for values.
minMomentumScore?number
Minimum momentum score threshold
sortBy?string
Field to sort results by
Default
"momentumScore"Value in
"momentumScore" | "popularityScore"excludeStables?boolean
Exclude stablecoin projects
Default
falseResponse Body
application/json
curl -X GET "https://api.aixbt.tech/v2/projects"{
"status": 200,
"data": [
{
"id": "string",
"name": "string",
"description": "string",
"rationale": "string",
"xHandle": "string",
"momentumScore": 0,
"popularityScore": 0,
"coingeckoData": {
"apiId": "string",
"type": "coin",
"symbol": "string",
"slug": "string",
"description": "string",
"homepage": "string",
"contractAddress": "string",
"categories": [
"string"
]
},
"tokens": {
"property1": "string",
"property2": "string"
},
"signals": [
{
"id": "string",
"date": "2019-08-24T14:15:22Z",
"reinforcedAt": "2019-08-24T14:15:22Z",
"description": "string",
"projectName": "string",
"projectId": "string",
"category": "string",
"officialSources": [
"string"
],
"clusters": [
{
"id": "string",
"name": "string"
}
]
}
]
}
],
"pagination": {
"page": 0,
"limit": 0,
"totalCount": 0,
"hasMore": true
}
}Empty