curl --request GET \
--url https://api.clicker.xyz/v1/tokens/feed \
--header 'Authorization: Bearer <token>'{
"items": [
{
"token": {
"chain": "ethereum",
"symbol": "<string>",
"name": "<string>",
"address": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"commentCount": 123
},
"entries": [
{
"actor": {
"type": "user",
"address": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"profile": {
"id": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"addresses": [
"<string>"
],
"metadata": {
"farcasterUsername": "<string>",
"farcasterId": 123,
"lensHandle": "<string>",
"ensName": "<string>",
"twitterHandle": "<string>",
"debankName": "<string>",
"commentCount30d": 123,
"pnl30d": 123,
"winRate30d": 123,
"tradeCount30d": 123,
"roiPercent30d": 123
}
}
},
"comment": {
"uid": "<string>",
"transactionHash": "<string>",
"chain": "ethereum",
"tokenAddress": "<string>",
"commentText": "<string>",
"timestamp": 123,
"isAppUserComment": true,
"perPosition": {
"metrics": {
"copyCount": 123,
"copyVolume": "<string>"
},
"commentCount": 123
},
"signerAddress": "<string>",
"replies": [
{
"id": "<string>",
"text": "<string>",
"author": {
"type": "user",
"address": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"profile": {
"id": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"addresses": [
"<string>"
],
"metadata": {
"farcasterUsername": "<string>",
"farcasterId": 123,
"lensHandle": "<string>",
"ensName": "<string>",
"twitterHandle": "<string>",
"debankName": "<string>",
"commentCount30d": 123,
"pnl30d": 123,
"winRate30d": 123,
"tradeCount30d": 123,
"roiPercent30d": 123
}
}
},
"timestamp": 123
}
]
},
"trade": {
"tokenAmount": 123,
"usdCost": 123,
"marketCap": 123,
"timestamp": 123,
"transactionHash": "<string>",
"direction": "buy",
"intent": "enter",
"perpPositionType": "long",
"perpLeverage": 123
},
"itemId": "<string>"
}
]
}
],
"pagination": {
"olderCursor": "<string>",
"olderItemsURL": "<string>",
"newerCursor": "<string>",
"newerItemsURL": "<string>"
}
}Returns a feed of tokens sorted by most recent comment. Each item contains the most recent comment (and associated trade metadata) per actor for that token within the past 7 days. Filter by chain using the chains query parameter.
curl --request GET \
--url https://api.clicker.xyz/v1/tokens/feed \
--header 'Authorization: Bearer <token>'{
"items": [
{
"token": {
"chain": "ethereum",
"symbol": "<string>",
"name": "<string>",
"address": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"commentCount": 123
},
"entries": [
{
"actor": {
"type": "user",
"address": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"profile": {
"id": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"addresses": [
"<string>"
],
"metadata": {
"farcasterUsername": "<string>",
"farcasterId": 123,
"lensHandle": "<string>",
"ensName": "<string>",
"twitterHandle": "<string>",
"debankName": "<string>",
"commentCount30d": 123,
"pnl30d": 123,
"winRate30d": 123,
"tradeCount30d": 123,
"roiPercent30d": 123
}
}
},
"comment": {
"uid": "<string>",
"transactionHash": "<string>",
"chain": "ethereum",
"tokenAddress": "<string>",
"commentText": "<string>",
"timestamp": 123,
"isAppUserComment": true,
"perPosition": {
"metrics": {
"copyCount": 123,
"copyVolume": "<string>"
},
"commentCount": 123
},
"signerAddress": "<string>",
"replies": [
{
"id": "<string>",
"text": "<string>",
"author": {
"type": "user",
"address": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"profile": {
"id": "<string>",
"name": "<string>",
"images": {
"raw": "<string>",
"xs": "<string>",
"sm": "<string>"
},
"addresses": [
"<string>"
],
"metadata": {
"farcasterUsername": "<string>",
"farcasterId": 123,
"lensHandle": "<string>",
"ensName": "<string>",
"twitterHandle": "<string>",
"debankName": "<string>",
"commentCount30d": 123,
"pnl30d": 123,
"winRate30d": 123,
"tradeCount30d": 123,
"roiPercent30d": 123
}
}
},
"timestamp": 123
}
]
},
"trade": {
"tokenAmount": 123,
"usdCost": 123,
"marketCap": 123,
"timestamp": 123,
"transactionHash": "<string>",
"direction": "buy",
"intent": "enter",
"perpPositionType": "long",
"perpLeverage": 123
},
"itemId": "<string>"
}
]
}
],
"pagination": {
"olderCursor": "<string>",
"olderItemsURL": "<string>",
"newerCursor": "<string>",
"newerItemsURL": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The total number of transactions to respond with. Defaults to 25.
If included, only include transactions with actions on the provided chains. Defaults to base, ethereum, solana. Pass all to see transactions on all supported chains.
ethereum, optimism, polygon, arbitrum, zora, base, zero, solana, hyperliquid, all Filter to trades with absolute USD value >= this amount. Allowed values: 10, 100, 500, 1000
Filter to trades with token market cap >= this amount. Allowed values: 100000, 1000000, 10000000
Filter to trades with token market cap < this amount. Allowed values: 100000, 1000000, 10000000