DATA AI
Explore cutting-edge insights into cryptocurrency markets powered by advanced AI analytics. Access robust APIs designed for seamless integration, real-time data, and intelligent predictions to fuel your crypto projects. Stay ahead in the digital economy with DataAI.
Get instant access to quality training data

use dataai_sdk::quick;
use ai_rig::analyze;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// Get token data and AI analysis in one call
let (token_data, ai_score) = tokio::join!(
quick::get_token("SOL"),
analyze::get_sentiment("SOL")
);
println!("Token: {} | AI Score: {}", token_data.price, ai_score);
Ok(())
}
import { unified } from 'dataai-sdk';
// Initialize with your API key - works for all providers
const api = unified('YOUR_API_KEY');
// Get data from multiple providers in parallel
const getMultiData = async (token) => {
const [sonar, santiment, kaito] = await Promise.all([
api.sonar(token),
api.santiment(token),
api.kaito(token)
]);
return { sonar, santiment, kaito };
};
getMultiData('SOL').then(console.log);
import { fetch } from 'dataai-sdk';
// Get comprehensive token data with one API call
const getTokenInfo = async (ticker) => {
const response = await fetch(`https://api.dataai.systems/ticker/${ticker}`);
const { marketCap, holders, volatility, sentiment, tweets } = await response.json();
console.log(` Market Cap: $${marketCap}\n Holders: ${holders.length}\n Volatility: ${volatility}`);
return { marketCap, holders, volatility, sentiment, tweets };
};
// Example: Get $SOL token info
getTokenInfo('SOL').then(console.log).catch(console.error);
import { research } from 'dataai-sdk';
// Get token research data in one go
const analyzeToken = async (symbol) => {
const data = await research.analyze(symbol);
console.log(' Whitepaper:', data.whitepaper.url);
console.log(' Top Threads:', data.twitter.threads.slice(0, 3));
console.log(' Token Distribution:', data.tokenomics.distribution);
return data;
};
analyzeToken('ETH');
use dataai_sdk::quick;
use ai_rig::analyze;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// Get token data and AI analysis in one call
let (token_data, ai_score) = tokio::join!(
quick::get_token("SOL"),
analyze::get_sentiment("SOL")
);
println!("Token: {} | AI Score: {}", token_data.price, ai_score);
Ok(())
}
import { unified } from 'dataai-sdk';
// Initialize with your API key - works for all providers
const api = unified('YOUR_API_KEY');
// Get data from multiple providers in parallel
const getMultiData = async (token) => {
const [sonar, santiment, kaito] = await Promise.all([
api.sonar(token),
api.santiment(token),
api.kaito(token)
]);
return { sonar, santiment, kaito };
};
getMultiData('SOL').then(console.log);
import { fetch } from 'dataai-sdk';
// Get comprehensive token data with one API call
const getTokenInfo = async (ticker) => {
const response = await fetch(`https://api.dataai.systems/ticker/${ticker}`);
const { marketCap, holders, volatility, sentiment, tweets } = await response.json();
console.log(`
Market Cap: $${marketCap}\n
Holders: ${holders.length}\n
Volatility: ${volatility}`);
return { marketCap, holders, volatility, sentiment, tweets };
};
// Example: Get $SOL token info
getTokenInfo('SOL').then(console.log).catch(console.error);
import { research } from 'dataai-sdk';
// Get token research data in one go
const analyzeToken = async (symbol) => {
const data = await research.analyze(symbol);
console.log('
Whitepaper:', data.whitepaper.url);
console.log('
Top Threads:', data.twitter.threads.slice(0, 3));
console.log('
Token Distribution:', data.tokenomics.distribution);
return data;
};
analyzeToken('ETH');
Use Cases

Market Trend Analysis
React to market trends with a single API call, getting comprehensive token information.

Early Trend Detection
Identify trends early with access to whitepapers, research reports, and X threads.

DeFi Operations
Perform DeFi actions with access to priority fee data, blobspace, and bridging information.
Unified Data Access
Live Market Data
Access real-time market data from multiple providers through a single API call.
Data Marketplace
Browse and purchase curated historical datasets for AI model training.
Unified SDK
One SDK, multiple languages. Seamlessly integrate with your existing stack.
Single API Key
Access all data providers and marketplace with one API key.
Pricing
Simple, usage-based pricing
Pay only for the data you need, No hidden fees.
DATA AI
All Rights Reserved
