Cambrian Detect high-alpha tweets API
GET /api/v1/deep42/social-data/alpha-tweet-detection
Alpha Tweet Detection
Overview
Feed of tweets detected as having high alpha potential for cryptocurrency investments. Each tweet is scored across four dimensions (sentiment, alpha, legitimacy, and technical accuracy), with AI-generated reasoning explaining each score. Version 2 (default) also attaches author track records with directional prediction accuracy measured at hourly price resolution.
Business Value
- Investment Signal Discovery: Identify high-quality tweets with actionable cryptocurrency insights before they become mainstream
- Risk Assessment: Evaluate the credibility and technical accuracy of crypto claims through AI-powered analysis
- Author Performance Tracking: Access comprehensive track records showing prediction accuracy and returns across multiple timeframes
- Market Intelligence: Discover emerging narratives and sentiment shifts from verified sources in real-time
- Alpha Generation: Filter noise to focus on tweets with genuine DeFi alpha and investment potential
Endpoint Details
URL:
https://api.cambrian.org/deep42/social-data/alpha-tweet-detection
Method: GET
Authentication: Required via X-API-KEY header
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| limit | integer | No | 20 | Number of tweets to analyze. Maximum 100. |
| token_filter | string | No | - | Filter tweets by specific token symbol for focused alpha analysis. |
Response Field Descriptions
| Response Field | Type | Description |
|---|---|---|
| twitterHandle | string | Twitter username of the tweet author. |
| tokenSymbol | string | Cryptocurrency token symbol mentioned in the tweet (e.g., BTC, ETH, SOL). |
| text | string | Full tweet text content. |
| createdAtTimestamp | integer | Unix timestamp (seconds) when the tweet was originally posted on Twitter. Used as the reference time for price tracking: the token price at this timestamp (rounded to nearest hour) becomes price_at_signal for track record calculations. |
| scoredAtTimestamp | integer | Unix timestamp (seconds) when the tweet was collected and scored by our AI pipeline. May differ from createdAtTimestamp due to collection delay. |
| retweetCountAtCollection | integer | Retweets at time of collection (point-in-time snapshot, not live-updating). |
| favoriteCountAtCollection | integer | Likes at time of collection (point-in-time snapshot, not live-updating). |
| replyCountAtCollection | integer | Replies at time of collection (point-in-time snapshot, not live-updating). |
| quoteCountAtCollection | integer | Quote tweets at time of collection (point-in-time snapshot, not live-updating). |
| sentiment | number | AI-scored sentiment direction. Range 0-10. >=7 = bullish signal, <=3 = bearish signal, 4-6 = neutral. Only bullish/bearish tweets generate price prediction signals for track record tracking. |
| alpha | number | DeFi alpha investment insight quality. Range 0-10. Measures actionability of the information for investment decisions. Higher = more novel, specific, and tradeable insight. |
| legitimacy | number | Source and claim legitimacy. Range 0-10. Assesses whether claims come from verified sources, contain factual on-chain references, and avoid misleading narratives. |
| technicalAccuracy | number | Technical correctness of crypto/DeFi claims. Range 0-10. Evaluates protocol mechanics, yield calculations, smart contract references, and on-chain data accuracy. |
| isRecent | boolean (nullable) | Whether the tweet content discusses recent events at the time of scoring. |
| isVerifiable | boolean (nullable) | Whether the tweet's claims can be independently verified via on-chain data, official sources, or public records. |
| scoresReasoning | string (nullable) | AI-generated explanation of all score assignments, including specific evidence cited, risk factors identified, and verification status of claims. |
| tweetUrl | string | Direct URL to the original tweet on X/Twitter. |
| userTrackRecordSignals | integer (nullable) | Total bullish/bearish signals made by this author across all tokens. Only counts tweets with sentiment >=7 (bullish) or <=3 (bearish) that have price data available. |
| userTrackRecordUniqueTokens | integer (nullable) | Number of distinct token symbols this author has made signals about. |
| userTrackRecordActiveDays | integer (nullable) | Number of distinct calendar days this author has made at least one signal. |
| userTrackRecordFirstSignalDate | string (nullable) | ISO date (YYYY-MM-DD) of this author's earliest tracked signal. |
| userTrackRecordLastSignalDate | string (nullable) | ISO date (YYYY-MM-DD) of this author's most recent tracked signal. |
| userTrackRecordAccuracy24h | number (nullable) | 24-hour directional prediction accuracy as a percentage (0-100). A bullish signal is correct if the token price increased within 24h; bearish if it decreased. Price comparison uses hourly resolution, rounded to the nearest hour from the signal timestamp. Calculated only over signals where 24h price data is available. |
| userTrackRecordAccuracy7d | number (nullable) | 7-day directional prediction accuracy as a percentage (0-100). Same methodology as 24h accuracy but comparing the price 7 days after the signal. |
| userTrackRecordAccuracy30d | number (nullable) | 30-day directional prediction accuracy as a percentage (0-100). Same methodology as 24h accuracy but comparing the price 30 days after the signal. Sample size may be significantly smaller than total signals for recent authors. |
| userTrackRecordAvgReturn24h | number (nullable) | Average directional return percentage over 24 hours. For bullish signals: (price_24h - price_at_signal) / price_at_signal * 100. For bearish signals: the inverse. Positive = author's calls are directionally profitable on average. |
| userTrackRecordAvgReturn7d | number (nullable) | Average directional return percentage over 7 days. Same methodology as 24h returns but over a 7-day window. |
| userTrackRecordAvgReturn30d | number (nullable) | Average directional return percentage over 30 days. Same methodology as 24h returns but over a 30-day window. |
| userTrackRecordBullishSignals | integer (nullable) | Number of bullish signals (sentiment >=7) made by this author. |
| userTrackRecordBearishSignals | integer (nullable) | Number of bearish signals (sentiment <=3) made by this author. |
| userTrackRecordAvgSentiment | number (nullable) | Author's average sentiment score across all signals. Range 0-10. |
| userTrackRecordAvgAlpha | number (nullable) | Author's average alpha score across all signals. Range 0-10. |
| userTrackRecordPerformanceTier | string (nullable) | Performance classification based on 24h prediction accuracy. 'topPerformer' = >=70% accuracy, 'proven' = >=60%, 'unproven' = <60%. Null if no accuracy data available. |
Examples
Detect the latest high-alpha tweets
Fetches the 3 most recent alpha-scored tweets along with each author's track record, useful for monitoring incoming signals in near real time.
curl -X GET "https://api.cambrian.org/deep42/social-data/alpha-tweet-detection?limit=3" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "Content-Type: application/json"
Response:
[
{
"twitterHandle": "50p_crypto",
"tokenSymbol": "RLB",
"text": "Update - The deployer has been drained.\n\n972,987,524 $RLB moved across in eight transfers between 13:59 and 16:50 UTC today. About $70.2M, a little over 131,000, is still sitting there.\n\nIt's all in a wallet that didn't exist this morning.\n\nRLB is on the move\u261d\ufe0f https://t.co/ysMAGOhhTW",
"createdAtTimestamp": 1786467933,
"scoredAtTimestamp": 1786658386,
"retweetCountAtCollection": 0,
"favoriteCountAtCollection": 26,
"replyCountAtCollection": 2,
"quoteCountAtCollection": 0,
"sentiment": 0,
"alpha": 10,
"legitimacy": 1,
"technicalAccuracy": 2,
"isRecent": true,
"isVerifiable": false,
"scoresReasoning": "The tweet claims a significant event involving the draining of an RLB deployer wallet and the movement of nearly 1 billion $RLB tokens on August 12, 2026. However, Google searches for 'RLB deployer wallet drained August 12 2026' and 'RLB large transfers August 12 2026' did not yield any corroborating news or blockchain analysis to verify these claims. The circulating supply of RLB is around 1.6 billion, making a transfer of 972 million RLB a highly significant event that would likely be widely reported if true. A major technical inaccuracy exists in the statement 'About $70.2M, a little over 131,000, is still sitting there.' With the current RLB price hovering around $0.07 per token, 131,000 RLB tokens would be worth approximately $9,170, not $70.2 million. This substantial discrepancy, coupled with the absence of verifiable information for the alleged large transfers and wallet drain, strongly suggests the tweet contains misinformation or hype rather than legitimate market-moving information.\n\nSources: [coingecko.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQH6oAipwr-j3GftuAzXyXKTwXzclte8wUgMwSYrf3l3lvlI_j0s0Z7CeDczesA3JLUfjPBA8eEPuevYoMGuVwk_R2KVG335anlVS0q4tDeHD556cRrb-zxU5VgCkehGPvRsQ74GCpGCJ6xc) | [kraken.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHwM_9VHzZPxMiFXS8M3cyhQpNr5CD1gTpWJOcaBkMHIyFkTB2YNPAr6IzK_IWiGwchZOwG7fnXX4rIquRqNWZzK8eAGhlGVRBYa-lB7327-lQSmZOhXV_5g6iWybib1TIchUQBJQ==) | [crypto.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEZz3e8p7Bm_fE23JcNcaSSp5klZDjYKSJaPpFs_9vvZQgXjJKSjLLAamE8EKVwnK-KPKvuYjCEUeSe-UUUDui3TLS4Zrw3eMlRNlOV5rRfmdbZlZXXrsw3tSh6udgiGFvgOxE=) | [crypto.news](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQE646vP5zkV0NcqtmHwGOVmwKT5L1BuCGMxOmfAybINTZWlCY9P6Q2jDoh5JYAch1S8nD2w7GV1MvLqmHvLO3v07_47vOEr0EOy6SXPSknddkCsmGgeI8O28loX13fJ5DHM2Q==) | [weareblox.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHzSCqr8OGRQZ1ODKcOMMZhSWGsdTQ5SvKqRTKvJfW8YxAIbqOWl9lbF3XD_lHKKQGUk5gzFTVqq3z0fMg66O3WOrjsQMKTbSc2hvb0sCw0Pdt3nJIq8mL6uW7jaR08HdrnVFFlaChdLmC16zp2xCfesG0j5A==) | [trustwallet.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQFKu2OoOxC74WTqmey6_Y-06S_49puO6paq83ZsqSD-MFgiH55Xnz1jRX7YQ86xdKJs2E_HW_vgLSV7g7e01dyj5qm9WgVyAptFLf3b2tU2O4e3OfRgnvpSfNwvB1ZmSjffxMdq2w==)",
"tweetUrl": "https://x.com/50p_crypto/status/2087223911435919826",
"userTrackRecordSignals": 46,
"userTrackRecordUniqueTokens": 8,
"userTrackRecordActiveDays": 33,
"userTrackRecordFirstSignalDate": "2025-07-19",
"userTrackRecordLastSignalDate": "2026-08-08",
"userTrackRecordAccuracy24h": 60,
"userTrackRecordAccuracy7d": 70.5,
"userTrackRecordAccuracy30d": 55.9,
"userTrackRecordAvgReturn24h": 2.45,
"userTrackRecordAvgReturn7d": 12.99,
"userTrackRecordAvgReturn30d": 4.61,
"userTrackRecordBullishSignals": 44,
"userTrackRecordBearishSignals": 2,
"userTrackRecordAvgSentiment": 8.04,
"userTrackRecordAvgAlpha": 7,
"userTrackRecordPerformanceTier": "proven"
},
{
"twitterHandle": "wiseadvicesumit",
"tokenSymbol": "RVN",
"text": "\ud83d\udea8 $RVN just got hit with a critical consensus bug.\n\nInvalid blocks were accepted by some nodes, and now miners are building an alternative chain.\n\nIf that chain wins, 3 days of transactions could be rolled back.\n\nExchanges have been told to pause RVN deposits & withdrawals.\n\nThis is not your usual 15% candle. \ud83d\udc80",
"createdAtTimestamp": 1786429516,
"scoredAtTimestamp": 1786658386,
"retweetCountAtCollection": 5,
"favoriteCountAtCollection": 18,
"replyCountAtCollection": 6,
"quoteCountAtCollection": 0,
"sentiment": 0,
"alpha": 10,
"legitimacy": 10,
"technicalAccuracy": 10,
"isRecent": true,
"isVerifiable": true,
"scoresReasoning": "All claims in the tweet are verified by multiple reputable sources. Ravencoin experienced a critical consensus vulnerability exploited since August 7, 2026, allowing invalid blocks to be accepted by some nodes. Major mining pools like 2Miners and RavenMiner are building an alternative, 'clean' chain, which could lead to a reorganization (rollback) of approximately three days of transactions if it becomes dominant. Exchanges, including Upbit and Bitget, have indeed paused RVN deposits and withdrawals due to the network issues. The RVN price dropped significantly, around 19%, reflecting the severity of the situation. The event is highly recent, with public disclosures and emergency responses occurring on August 10-11, 2026.\n\nSources: [cryptonomist.ch](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEyTeV4ybljS5QVvNwQ3i2Zo54KnRYq-qzXzbTN_CctueJ8BVKu9_5WRZcEI8j7MWf9103-bCPLKhIB4PCpLHvoBZqZVK7bY4wjK214ovabvlOzImfW4-TQWIANfPOE15IpxOR2zsDQtf4EBhQqSMSOJSZgDkp6pUz9beeQoCNcUO1Qkw==) | [coingabbar.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQESII_KekbD9YiTjNn_DfPJnAOYCfAB0au3DOoVJ8n2Rr0ojPe0IFD4WMLA4tJkPa6h3SLM_dq2UuVy0-PqTjizctuBRlatpEahfMgTvoLygxAuYyTd9PoW7f4EpOuE9zjE7Jy_WfC49KncJVdUCjh7Jl9QOeH5qPI0uz_wXhDCWulVCTw=) | [pluang.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEzvg-5qwECiHnhrY2X6EkV0cFfRlspGkBQMTi3-SYQHh6AVPZwUowDCANoEOk0k6idxjtTYXXDakJqCUpo4qAYIijTXM3pH7BgLRlAyrrgTzCx5OeprmqtfXqSQwYPcp7oCM4_X0AbV7w7joOzPzwFCUspXyFWq7tmlHGqoyhzxu_0JHrqvr9FPcI3NDSL0677rwyubPVXsA==) | [kucoin.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHuNrsXDkA4SML38Ms65n9cKZo94wjfwc4xvel3a75U_N6ZUq2yH5HL76q4krsJVw2ArIv9ygraPExa7XG6jNJfqzphx4gzVii-qOhcciADSwKs4MEpsHDty2BFpjRc0dRIPdSXXXdrscRZ1j5YvohNLwopqIHWGd7sms4rnBGwCH4JUZyaYHg8-MLn4cLeQLUhZymngXlwdtrsVQLPkHB11APTtpaieNzpiG8EZ35d6RUy3nTh) | [financefeeds.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHWxqiwA0veTyfk_IIbunM-_mpjy2AblXoTwMWYAxUZ8CQYt1R-05X48hheDWnckZV5bodBTfGIv4EyaSOJGvKoOykGAtIxgE-XPC5xQCPJoPCJwBIixn5XdwnIm-ujui0ocpVlpyQ4yp-KtFhUIpKdJmKHznXwKYamFbcgbk1D8gEswtp9Gcl2gIvQ-3mMtMCMvw==) | [crypto.news](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGpfSBZ8f236wTI91w6VLZqNhbZwuoGnZLAqZU9rNU5n4b3vnte6YXaqZn7dslneTw5sfiKjIySJ7bgANEWy_fC269J3BKFj9MggZ5mYytFB4UdsyacqUnhCQHVplufMa6oPEBEZ289VjG5L0dMJ1M1yJ0KN1sdAXz9xBCKxGc3AA==) | [kucoin.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQH-EzEI7ugXDy0rm5gFzbaO6KP9grjvxa2XoGW7P3wW7qe643fGM7S3KgjXXR5QfQGDxH_aUW1u9AkYyjEeQwWWK8xWPxEr9IMFTHmNokcr5lQ4CTC6SkmhOHzRG62S4EzEQpGThMRarpfFPtH_xlCph58mJl6g-RK8AGYtYuwhtT6aoiPDfLoVqZfUkU0hxkOlIwGbCXKaCTVlo-wxnh8yr61vkqaINweDC4fAi_Mnf2XjHbPy6R_M) | [pluang.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHLTp5981LF-YQhCbldu2VIty6Czk-QxyQK0hx4KhoDE-6KK6e1dAw7t0RQ-Q7QotmG_P4YuHuluF0x6WxHePudGOnswb9jnsex2ud11Tn-6kf6Cni5jQZ1Hp-KjpjQDjtN44SzQq6edOfJ0zB2DFdEtLtqDJ6pbloBtfGmLTcA-qBkmlJDIznuiNuomYY-kK3Kzk5g) | [hokanews.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQG940UZ5xz9UIGTxYUOs0sGNM8Q2WqEmynY16o9drUH27rvFBa7h7xZV5JFtXlTPqRHGkqYYLHD6eDCesdKxhU9i2hoZZ-A-UU6POG44W-1Jd-mh8E4MNu3EOlXmRYy_xbufrgstyGloZlteuRSqrq1lRrMeuCTyAYuTSdmBOFSsVo3lIMeZXU=) | [pluang.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQFys9g9t775GGUkRARaeCXVNHdYCSr2TjlTNYPwqnLi4LCeSS3c2p9Qzdp5HPUBXNj1FNhdmxlFxLzIiCm2qxUz_VJQnV9DRmXaqVKmlavyRfZeq90smkXoXL7pGBjy-jTSWvcfbLiYMQbQiUdhoUT-361RsrGyl-tAqgt1eXzqFKc7weg=) | [cryptonews.net](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGI3Nq5-kWyIVSfcOupv9bcNhjGVQjVSnUYu5b1M4MVb50_doBJGL3CJrPP6UaeYGO3u1pnfmhrWVyhTmYnf3_8S32ZM27G6qYYJ6Gl8J811QieqgxIto5geHQM329ua0ap0njulQYy) | [cryptotimes.io](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQFLx2ydLJenHAIs6avAH4OzQFupefkU3037i6_cq0o70qxB5DrFbjTRpay4gh-6Mmr0QQQgebH0H21Wl8JDU7mDYbNOXLYPlsLcQZjvs93uMIVtj0_msWSEV3z-EFKaZ4qbrSbkt84pZgv3jrtJ5jt4f3VOqhXTMNW1rXQwUi1Wa-l-MbTHbBApTCA9J7YkWUJERIEtwzb9) | [youtube.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHmIDqphh3094olQZS8FNa5lbd36pbL3p2VL7SFltD_5uZvXeO4sniMTzOnboAEuO5z0aK0dqtXjZrlFAzOCOywmIhsdw3XqpZBAKhWsFqTSJo28dSIX8yWj8XlliXumvNcw18J8C4=)",
"tweetUrl": "https://x.com/wiseadvicesumit/status/2087062776519053481",
"userTrackRecordSignals": 612,
"userTrackRecordUniqueTokens": 147,
"userTrackRecordActiveDays": 196,
"userTrackRecordFirstSignalDate": "2024-10-14",
"userTrackRecordLastSignalDate": "2026-08-07",
"userTrackRecordAccuracy24h": 54.7,
"userTrackRecordAccuracy7d": 53.1,
"userTrackRecordAccuracy30d": 47.7,
"userTrackRecordAvgReturn24h": 2.58,
"userTrackRecordAvgReturn7d": 2.28,
"userTrackRecordAvgReturn30d": -0.61,
"userTrackRecordBullishSignals": 336,
"userTrackRecordBearishSignals": 276,
"userTrackRecordAvgSentiment": 5.48,
"userTrackRecordAvgAlpha": 7.31,
"userTrackRecordPerformanceTier": "unproven"
},
{
"twitterHandle": "xfinancebull",
"tokenSymbol": "XLM",
"text": "BREAKING\ud83d\udea8\ud83d\udea8\ud83d\udea8SEC clears Franklin Templeton funds to use a Stellar-based onchain fund.\n\nThis is long-term bullish for $XLM\n\nThis is much bigger than BENJI simply existing on Stellar.\n\nFranklin Templeton\u2019s registered funds can now use the Franklin OnChain U.S. Government Money Fund for something institutions do constantly:\n\nManage cash and securities-lending collateral.\n\nAnd here is the part that caught my attention.\n\nFranklin Templeton Investor Services will create a Stellar wallet for each participating fund when its account is opened.\n\nThink about that.\n\nA traditional investment fund can have its own Stellar wallet, hold shares of a tokenized U.S. government money fund, move cash into it, redeem when liquidity is needed, and use it within collateral workflows.\n\nThat turns Stellar from a place where an RWA happens to exist into infrastructure that can sit inside the daily operations of regulated funds.\n\nFranklin told the SEC that this setup offers hourly NAV calculations, intraday trading, faster processing and potential cost savings.\n\nAnd BENJI is not starting from zero.\n\nThe BENJI suite already reached roughly $1.98B AUM, with about $654M running on Stellar.\n\nNow remember who Franklin Templeton is: roughly $1.68 TRILLION in global AUM as of March 31, 2026.\n\nI\u2019m not saying all of that is coming to Stellar.\n\nI\u2019m saying a massive traditional asset manager now has a clearer regulatory path to bring recurring cash and collateral operations onto infrastructure where Stellar is the primary blockchain.\n\nEvery Stellar account requires XLM reserves.\nEvery Stellar transaction pays fees in XLM.\n\nThis is how blockchain adoption becomes boring enough for Wall Street to actually use it every day.\n\nAnd that is exactly why this makes me even more bullish on $XLM.",
"createdAtTimestamp": 1786583567,
"scoredAtTimestamp": 1786658386,
"retweetCountAtCollection": 7,
"favoriteCountAtCollection": 62,
"replyCountAtCollection": 12,
"quoteCountAtCollection": 1,
"sentiment": 10,
"alpha": 9,
"legitimacy": 9,
"technicalAccuracy": 9,
"isRecent": true,
"isVerifiable": true,
"scoresReasoning": "The tweet accurately reports that the SEC staff issued a 'no-action letter' to Franklin Templeton, allowing its registered funds to utilize the Stellar-based Franklin OnChain U.S. Government Money Fund (BENJI) for cash management and securities-lending collateral. This development, which provides regulatory clarity for holding tokenized fund shares, was announced on August 11-12, 2026, making it very recent.\n\nKey claims verified:\n- SEC clearance for Franklin Templeton funds to use a Stellar-based onchain fund for cash and collateral management is confirmed.\n- Franklin Templeton Investor Services will create Stellar wallets for participating funds and manage private keys.\n- The fund offers benefits such as hourly NAV calculations, intraday trading, faster processing, and potential cost savings.\n- The BENJI suite's AUM of approximately $1.98 billion, with about $650-654 million on Stellar, is consistent with reports from April 2026.\n- Franklin Templeton's global AUM of roughly $1.68 trillion as of March 31, 2026, is also confirmed.\n\nThe tweet's interpretation of this as 'long-term bullish for $XLM' and 'much bigger than BENJI simply existing on Stellar' is a market opinion, but the underlying factual basis for this sentiment is strong due to the regulatory precedent and operational integration for traditional funds using blockchain infrastructure.\n\nSources: [thedefiant.io](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHFp_PQ51LGd8wmhyMsxq4yMXWH86kncmIwtSgLno5FLycHJVETElprJk6aRJfhhjJpyLasyBxpWwFH_h2FSiulyedIBpXkmhd8MHoqPQrzZfEnhHGTdM2ICY5WmTtIGY7SNVZG-w3hiKXjZ3aaLvqiSWBYrbD5YLFlhtwcf35ptPx0wHBjSv4obbnNLPqE6i8AK5zqMt0ewPsrkjTcwfxADopt1opYrcIX9liMOBxNubkAnH2SUWeSNNklytEa) | [theblock.co](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGxYL-7VYnNvFS66Bm7vzDx25gzhetuMjNdtN98WOK3iqNWZzjsNww-Macic3cVLg7g8ZfUSBDCTTN8-V7aMkBiVvTSgKAvbPDfSNdT5p1H9D5m9U86E-qhmHlEJK6KztLJf5kETpg9wED8KD3HsCYBhTNEsX3qJ99T_mozdSmWoRPcDgPbCP6g6Uv3FzIPaOhfzlGzoVrAoEUrO22h73IHiYpb4-j-v822I2Grd2PE-K8eIEBClVnl6h3H) | [binance.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQFE1g8rEXKHEeF0EqTORKK-VoWPVpkPoD62OiQxkOxIDPZVNzv7JCDIUVKTpCoE_-HCF5b_7GfUdjKXUKAQGFh_qkohjaA6mKna8p8igccivnNj7ULF3w3uqiL4RpINlxEasqX2x4XULE-UwEVQKQ9W) | [kucoin.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEdF6az0Y5d_ZdQTDG5MIOVk53EXP8pf9S7R27pt2Pv4eel6JuxJnzvFnN36-FOd-p40oqZS8-1tSXIwozFlx0ShRwPmODv92Xn8Xwh9hvogeU_m9mSNxBArPksLkA7J-_KOBl-3eTZ3wazR_v_C8753EnUpLwZfsTZuavK5w9EyL2DBsJEXlHwWLWcJjB7GmOGeY7NxoPGeZxcxS5JUT756mZhPCH6G20=) | [bloomingbit.io](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQFo990Co-jytq9Egwy5F7R8Jw0JyxpAcCSSd7Nsq6_-gC6KmDmErREHdKbK2fUre81PaNWYKBGk0gzgAY-LumoFoM4_cplAPnXhsEFN9iRn5Skaz7jT0_mZy2xdoDPvRN8BuN51) | [cryptorank.io](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGxiOqNWxzLUJRaB06hO1_Lnj4xF9f4ioeVEnrqABP7a6JRkIWTIWtPcwAMAqkfUL5x4WgzkMQD4b6Qroe-kmfGLT4BXapGffQpwwJw3-Kf9s7-L7scU-yB1fRn0ZfjI9WfqBZpPNKEkShF35QgI94CBJc9UUiXc6staCJPY19c3yGgKcBiAr7RRWZaNUjwWHmQ7V6Q5VytYpRP) | [biggo.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQFJ1ifHMF8_tTWTuOYUt0Kvcr1j5RYfDmiOBrTvMNiHsz7vYBttR3z_SqLDlNqIB2qQm0BT4i8A9yh0CnPO3tr4zmCbPQ4RL7K-5oa_OSK2mo2B5kj7VPwzasrXrkKr-1MMCgMfhxAhNpLCb5Hsz6Jb7az6GcuBoMo_rVWtsA==) | [investingnews.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHYaAjiqCysZaeeG0g7D5cRlc8r5J64JVnntGyxO65oBWS2HHrp6oQ-QCvwizyKBsCyQ5hFXhY-jGaMXS0CEjc-XwStgiJ3QqhohhyctuWRBbEpYJoQvYNdawWv7CPat8ntFkdYAniATVk-IOE2Nch8NJjlh8Xmt1jLJTd20MH8bQ==) | [stellar.org](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQElw9fzhG8Ws9-cZ4Df61jAQd_6GfCMekGDYfZLn0GB_G_DDIBWEvzPtnMO6ltKIiO_Bh8wBojRR6pfZzVj_OhKM_FHsZmsFERerXFowIviarktwhm0c3qE7W24EEeIJK8-j_9HY4xC5gGWi5tQuPnWRN1GcP24WiWA6lNofDRJ7ypOLKgbuC55GrwtBNl1FOBSyqeLLSzruiStm3zLBhXTQrJYmgNgPg3wuqN6l2PaFF168ZDCgb0vKtJWqDwFCwILt_3u1g10GjcEUaE5QsWNJGKd4Q==) | [stocktitan.net](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGUog-5-Rck6nO0u0LDqZirrFOs6G_sOz-wSJL7x4zYFueKDvTENp-iGr9AQJXKQUKG8Br0GEVSX2h3_UcN65b1wRHk2TJnzji1vsz7Tq4VmopkEnNW__9GArxI0Ewe_Yh7KOP9hbtbVXXqLelONh6d7UxJ-sFDA9g2IjJkg1iwmIlFOBdTSzOMEhfJdflQLo4pQlXJ8gVB19TmKIv72CSzIAhXvMblnryyYef4vT3KnBBKTA==) | [franklinresources.com](https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGttJgJLDyHqs4kOWBfrb3u-Pgok7_nx0VDfEZFccsFe3F9LP9duLnL4om8OYYRqr2ZxdWvyj58JGs1EQnVZL7mBandJCu30KIs7wj5b0xkG71uOsms4yHfTAIPYM3dsSJz_XJyqnpVMUov_erOyNyyZHLEMVXvSSv9RtAi9y5gZG8QEti0U5bZAQwn88vOLodhdu7FvFe2J9JyiItXCKagBb0nUyqezC40LPMGNQD4henyvcp-V4IeOrvpKWmaOu4yDYdBnoERaN6FVJnkNqopnPedNtcA2HBSqdK15_-w2KC1cMLlcPbuLmBqrIAErOxg41eB7vApt2etPgIQDKs=)",
"tweetUrl": "https://x.com/xfinancebull/status/2087708915140333708",
"userTrackRecordSignals": 1544,
"userTrackRecordUniqueTokens": 57,
"userTrackRecordActiveDays": 249,
"userTrackRecordFirstSignalDate": "2025-04-06",
"userTrackRecordLastSignalDate": "2026-08-08",
"userTrackRecordAccuracy24h": 41.9,
"userTrackRecordAccuracy7d": 36.6,
"userTrackRecordAccuracy30d": 29.8,
"userTrackRecordAvgReturn24h": -0.2,
"userTrackRecordAvgReturn7d": -1.97,
"userTrackRecordAvgReturn30d": -7.24,
"userTrackRecordBullishSignals": 1525,
"userTrackRecordBearishSignals": 19,
"userTrackRecordAvgSentiment": 8.55,
"userTrackRecordAvgAlpha": 6.91,
"userTrackRecordPerformanceTier": "unproven"
}
]
The result set is limited to 3 items. The response is a direct array (no wrapper): a low-legitimacy unverified rug rumor (RLB), a fully-verified critical network bug (RVN), and a highly bullish, well-sourced regulatory development (XLM), each accompanied by the author's historical signal accuracy and returns.
x402 Payment Option
This endpoint supports pay-per-use access via the x402 payment protocol (v2): pay $0.05 USDC per request using blockchain micropayments. No API key required.
Quick Start (TypeScript)
npm install @x402/fetch @x402/evm viem
import { x402Client } from "@x402/core/client";
import { ExactEvmScheme } from "@x402/evm/exact/client";
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY as `0x${string}`);
const client = new x402Client();
client.register("eip155:*", new ExactEvmScheme(signer));
const fetchWithPayment = wrapFetchWithPayment(fetch, client);
const response = await fetchWithPayment(
"https://x402.cambrian.org/deep42/social-data/alpha-tweet-detection"
);
const data = await response.json();
Quick Start (Python)
pip install "x402[httpx]"
import asyncio, os
from eth_account import Account
from x402 import x402Client
from x402.http.clients import x402HttpxClient
from x402.mechanisms.evm import EthAccountSigner
from x402.mechanisms.evm.exact.register import register_exact_evm_client
async def main():
client = x402Client()
account = Account.from_key(os.getenv("EVM_PRIVATE_KEY"))
register_exact_evm_client(client, EthAccountSigner(account))
async with x402HttpxClient(client) as http:
response = await http.get("https://x402.cambrian.org/deep42/social-data/alpha-tweet-detection")
print(response.json())
asyncio.run(main())
Payment Flow
- Send a normal request to the endpoint (no API key needed)
- Server returns
402 Payment Requiredwith payment details - The x402 SDK automatically signs a payment authorization with your wallet
- The SDK resubmits the request with the signed payment
- Server verifies payment and returns the API response
The x402 SDK handles steps 2-5 automatically.
Network: Base (chain ID 8453) | Currency: USDC | Price: $0.05 per request
API Versioning
This endpoint supports multiple API versions. Use the Accept header to request a specific version.
Available Versions
| Version | State | Default | Accept Header |
|---|---|---|---|
| 1.0.0 | Current | No | application/vnd.cambrian.deep42.social-data.alpha-tweet-detection.v1+json |
| 2.0.0 | Current | Yes | application/vnd.cambrian.deep42.social-data.alpha-tweet-detection.v2+json |
How to Request a Specific Version
curl -X GET "https://api.cambrian.org/deep42/social-data/alpha-tweet-detection" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "Accept: application/vnd.cambrian.deep42.social-data.alpha-tweet-detection.v1+json"
Version Lifecycle
- Current: Actively maintained and recommended for new integrations
- Deprecated: Still functional but scheduled for removal (check
deprecated_at) - Sunset: No longer available (returns
410 Gone)
Note: If no Accept header is specified, the default version (2.0.0) is returned.
Related Endpoints
- /deep42/social-data/influencer-credibility - Returns cryptocurrency influencers ranked by credibility score, track record, accuracy, and engagement metrics.
- /deep42/social-data/sentiment-shifts - Identifies tokens with significant sentiment changes that could signal market movements and trading opportunities.
- /deep42/social-data/token-analysis - Comprehensive social intelligence report for a cryptocurrency token with sentiment analysis.
- /deep42/social-data/trending-momentum - Identifies tokens with rapidly increasing social signals and momentum indicators.