Complete guide for developers to integrate with our sentiment analysis API
Get AI-powered sentiment analysis, real-time insights, and ready-to-use content for your crypto projects
Flexible pricing for developers, businesses, and enterprises
All plans include:
Request access to get your unique API key for authentication
Select from supported cryptocurrencies: Bitcoin, Ethereum, Solana, Taraxa
Receive sentiment analysis, summaries, and tweet suggestions
Test our sentiment analysis API with real data or try the demo mode
No API key required! Test the API without authentication to see sample responses. Enter a real API key to get live data from the network. Perfect for exploring features before purchasing.
Built for developers who need reliable, real-time crypto sentiment data
Advanced sentiment analysis using Claude AI for accurate market insights
Live sentiment data updated every 2-6 hours from social media
Ready-to-use content for your social media marketing
Detailed engagement metrics and trending posts analysis
Secure API keys with rate limiting and monitoring
Support for major cryptocurrencies and growing ecosystem
All API requests require authentication using an API key. Include your API key in the request headers.
X-API-Key: your_api_key_here?api_key=your_api_key_herehttps://zedashboard.xyz/api/claude/publicGet AI-powered sentiment analysis, summaries, and tweet suggestions for supported cryptocurrencies.
GET /api/claude/public/{topic}analytics - Include engagement analytics (true/false, default: true)trending - Include trending posts (true/false, default: true)max_trending - Number of trending posts (1-20, default: 5)GET /api/claude/public/bitcoin?analytics=true&trending=true&max_trending=10The following cryptocurrency topics are currently supported by the API:
| Topic ID | Symbol | Name | Description |
|---|---|---|---|
bitcoin | BTC | Bitcoin | Cryptocurrency sentiment analysis |
ethereum | ETH | Ethereum | Cryptocurrency sentiment analysis |
solana | SOL | Solana | Cryptocurrency sentiment analysis |
taraxa | TARA | Taraxa | Cryptocurrency sentiment analysis |
Don't see the cryptocurrency you need? We're constantly expanding our coverage and can add new tokens based on demand.
The API now generates 5 ready-to-use tweet suggestions based on the sentiment analysis. These are clean, professional tweets that users can copy and paste directly to X (Twitter).
{
"success": true,
"topic": "bitcoin",
"summary": "AI-generated social sentiment analysis...",
"tweetSuggestions": [
"Bitcoin reaches new ATH! Institutional adoption accelerating with $2.2B in ETF inflows today.",
"Strong support holding at $65K as whales accumulate. This is just the beginning of the cycle!",
"Bitcoin dominance showing strength while altcoins prepare for rotation. Smart money knows where to be!",
"Halving effect in full force! Supply shock plus institutional demand equals perfect storm for higher prices.",
"Lightning Network adoption growing 300% YoY. Bitcoin scaling solutions are here and working!"
],
"postsCount": 150,
"cached": false,
"timestamp": 1703123456789,
"dataSource": "LunarCrush Social Sentiment",
"model": "claude-sonnet-4-20250514",
"sentimentScore": 75,
"engagement": 25000,
"analytics": {
"totalPosts": 150,
"posts24h": 45,
"totalEngagement": 25000,
"averageEngagement": 167,
"topEngagement": 5000
},
"trendingPosts": [...]
}{
"error": "Error message",
"details": "Detailed error information",
"supportedTopics": ["bitcoin", "ethereum", "solana", "taraxa"],
"supportedAliases": ["btc", "eth", "sol", "tara"],
"message": "Usage instructions"
}The sentiment score is a numerical representation of the overall social sentiment for a cryptocurrency topic, calculated from 0 to 100 based on social media posts and engagement data.
Negative sentiment, fear, selling pressure, bearish news dominating social media
Mixed sentiment, balanced discussions, neither strongly bullish nor bearish
Positive sentiment, optimism, buying pressure, bullish news dominating social media
const response = await fetch('https://zedashboard.xyz/api/claude/public/bitcoin?analytics=true&trending=true', {
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data.summary);
console.log(data.tweetSuggestions);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
response = requests.get(
'https://zedashboard.xyz/api/claude/public/bitcoin?analytics=true&trending=true',
headers=headers
)
data = response.json()
print(data['summary'])
print(data['tweetSuggestions'])curl -X GET "https://zedashboard.xyz/api/claude/public/bitcoin?analytics=true&trending=true" \ -H "X-API-Key: your_api_key_here" \ -H "Content-Type: application/json"
Currently, all API plans include unlimited requests to provide maximum flexibility for your applications:
No rate limiting - Make as many API calls as you need for your crypto sentiment analysis projects. Perfect for high-frequency applications, real-time dashboards, and enterprise solutions.
Note: We reserve the right to implement fair usage policies in the future if needed to ensure service quality for all users.
Need help integrating with the API? Here are some resources: