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 API key to authorize requests
In: header
Query Parameters
Page number (1-indexed)
1Number of projects per page (max 50)
50value <= 50Comma-separated list of project ObjectIds to filter by
Comma-separated list of project names to filter by (case-insensitive regex)
Comma-separated list of X/Twitter handles to filter by
Comma-separated list of token tickers to filter by
Filter by blockchain platform. See /projects/chains for values.
Filter by contract address. EVM addresses are case-insensitive; non-EVM addresses (e.g., Solana) are case-sensitive.
Can be combined with chain to filter by specific chain + address.
Minimum momentum score threshold
Field to sort results by
"momentumScore""momentumScore" | "popularityScore"Exclude stablecoin projects
falseResponse Body
application/json
curl -X GET "https://api.aixbt.tech/v2/projects?address=0x2260fac5e5542a773aa44fbcfedf7c193bc2c599"{
"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": [
{
"chain": "string",
"address": "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"
}
],
"activity": [
{
"date": "2019-08-24T14:15:22Z",
"source": "string",
"cluster": {
"id": "string",
"name": "string"
},
"incoming": "string",
"result": "string",
"fromSignal": {
"signalId": "string",
"projectId": "string",
"projectName": "string"
}
}
]
}
]
}
],
"pagination": {
"page": 0,
"limit": 0,
"totalCount": 0,
"hasMore": true
}
}