ZeDashboard API

Complete guide for developers to integrate with our sentiment analysis API

Public Documentation

Transform Your Crypto Analysis

Get AI-powered sentiment analysis, real-time insights, and ready-to-use content for your crypto projects

๐Ÿ’Ž Choose Your Plan

Flexible pricing for developers, businesses, and enterprises

3 Months

$199
$66/month
  • โœ“Unlimited requests
  • โœ“All supported topics
  • โœ“Tweet suggestions
  • โœ“Email support
Most Popular

6 Months

$349
$58/month
Save 12%
  • โœ“Unlimited requests
  • โœ“All supported topics
  • โœ“Tweet suggestions
  • โœ“Priority support
  • โœ“Custom integrations

1 Year

$599
$50/month
Save 24%
  • โœ“Unlimited requests
  • โœ“All supported topics
  • โœ“Tweet suggestions
  • โœ“24/7 priority support
  • โœ“Custom integrations
  • โœ“Dedicated account manager

All plans include:

โœ“ Real-time dataโœ“ API documentation

๐Ÿš€ Quick Start

1

Get API Key

Request access to get your unique API key for authentication

2

Choose Topic

Select from supported cryptocurrencies: Bitcoin, Ethereum, Solana, Taraxa

3

Get Insights

Receive sentiment analysis, summaries, and tweet suggestions

๐Ÿงช Try the API

Test our sentiment analysis API with real data or try the demo mode

๐Ÿ’ก

Demo Mode Available

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.

โœจ Why Choose ZeDashboard API?

Built for developers who need reliable, real-time crypto sentiment data

๐Ÿค–

AI-Powered Analysis

Advanced sentiment analysis using Claude AI for accurate market insights

โšก

Real-Time Data

Live sentiment data updated every 2-6 hours from social media

๐Ÿฆ

Tweet Suggestions

Ready-to-use content for your social media marketing

๐Ÿ“Š

Comprehensive Analytics

Detailed engagement metrics and trending posts analysis

๐Ÿ”’

Enterprise Security

Secure API keys with rate limiting and monitoring

๐ŸŒ

Global Coverage

Support for major cryptocurrencies and growing ecosystem

๐Ÿ” Authentication

All API requests require authentication using an API key. Include your API key in the request headers.

Header Authentication (Recommended)

X-API-Key: your_api_key_here

Query Parameter Authentication

?api_key=your_api_key_here

๐ŸŒ Base URL

https://zedashboard.xyz/api/claude/public

๐Ÿ“ก Endpoints

Sentiment Analysis Endpoint

Get AI-powered sentiment analysis, summaries, and tweet suggestions for supported cryptocurrencies.

Endpoint

GET /api/claude/public/{topic}

Query Parameters

  • 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)

Example Request

GET /api/claude/public/bitcoin?analytics=true&trending=true&max_trending=10

๐Ÿช™ Supported Topics

The following cryptocurrency topics are currently supported by the API:

Topic IDSymbolNameDescription
bitcoinBTCBitcoinCryptocurrency sentiment analysis
ethereumETHEthereumCryptocurrency sentiment analysis
solanaSOLSolanaCryptocurrency sentiment analysis
taraxaTARATaraxaCryptocurrency sentiment analysis
โž•

Need a Different Token?

Don't see the cryptocurrency you need? We're constantly expanding our coverage and can add new tokens based on demand.

๐Ÿ“ง Contact us via Telegram

๐Ÿ“‹ Response Format

โœจ New Feature: Tweet Suggestions

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).

Tweet Suggestions Include:

  • Key metrics and milestones
  • Institutional adoption highlights
  • Technical analysis insights
  • Network growth and usage data
  • Professional tone without emojis or hashtags

Success Response

{
  "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 Response

{
  "error": "Error message",
  "details": "Detailed error information",
  "supportedTopics": ["bitcoin", "ethereum", "solana", "taraxa"],
  "supportedAliases": ["btc", "eth", "sol", "tara"],
  "message": "Usage instructions"
}

๐Ÿ“Š Understanding Sentiment Score

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.

Bearish (0-30)

Negative sentiment, fear, selling pressure, bearish news dominating social media

Neutral (31-69)

Mixed sentiment, balanced discussions, neither strongly bullish nor bearish

Bullish (70-100)

Positive sentiment, optimism, buying pressure, bullish news dominating social media

How It's Calculated

  • Social Media Analysis: Analyzes posts from Twitter, Reddit, and other platforms
  • Content Sentiment: Uses AI to evaluate the emotional tone of posts
  • Engagement Patterns: Considers likes, retweets, and community reactions
  • Real-time Updates: Updates every 2-6 hours based on new social activity
  • Filtered Content: Excludes spam and low-quality posts for accuracy

๐Ÿ” Field Descriptions

Core Fields

  • success: Boolean indicating if the request was successful
  • topic: The cryptocurrency topic that was analyzed
  • summary: AI-generated sentiment analysis and news summary
  • tweetSuggestions: 5 ready-to-use tweet ideas for social media sharing
  • postsCount: Total posts analyzed in the last 24 hours
  • cached: Whether the response came from cache
  • timestamp: Unix timestamp of when the data was generated
  • dataSource: Source of the social sentiment data
  • model: AI model used for analysis
  • sentimentScore: Sentiment score from 0-100

Analytics Fields

  • engagement: Total interactions across all posts
  • analytics: Detailed engagement metrics and statistics
  • trendingPosts: Top posts by engagement with creator info

๐Ÿ’ป Code Examples

JavaScript/Node.js

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);

Python

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

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"

โšก Unlimited Access

Currently, all API plans include unlimited requests to provide maximum flexibility for your applications:

๐Ÿš€

Unlimited Requests

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.

๐Ÿ†˜ Support

Need help integrating with the API? Here are some resources:

  • Documentation: This page contains the complete API reference
  • Examples: Check the code examples above for common use cases
  • Rate Limits: Monitor your usage to avoid hitting rate limits
  • Contact: Reach out to the admin team for additional support