Introduction

Introduction

Introduction

Welcome to the RogerAI API

Our platform offers a robust data layer for the Web3 ecosystem by integrating real-time on-chain data with X (formerly Twitter) social intelligence.

Whether you are building trading bots, developing dApps, or researching market trends, our API gives you the unified insights needed to make smarter, data-driven decisions.

Who is this API for?

Our B2B product is designed to serve a range of clients in the Web3 space:

  • Crypto Hedge Funds, VCs, and Asset Managers: For deep due diligence, deal sourcing, and informing sector rotation strategies.

  • Market Makers & Algorithmic Trading Firms: To build high-frequency strategies based on social signals and identify new liquidity pools.

  • Crypto Exchanges & Social Trading Platforms: To power "Trending" sections and provide users with actionable discovery tools.

  • AI Agent Developers: To build sophisticated research agents that can understand and respond to complex queries about the crypto market.

  • Crypto Projects & DAOs: To monitor community health, track marketing ROI, and identify key opinion leaders (KOLs).

  • Media, Marketing & Research Firms: To generate data-driven reports, inform content strategy, and measure the impact of PR and marketing campaigns.

  • Due Diligence & Compliance Platforms: To automate research, vet influencers, and perform background checks.

API Categories

Our endpoints are organized into several categories to help you find the functionality you need:

  • Discovery & Search: Find any entity, from tokens to social accounts.

  • Analytics & Intelligence: Track historical performance and get market-wide leaderboards.

  • Social Intelligence: Analyze communities, sentiment, and user activity.

  • AI & Automation: Leverage AI-generated summaries and identify Key Opinion Leaders.

  • Real-time & Streaming: Subscribe to live feeds of social data.

  • Research & Due Diligence: Get comprehensive, expert-level reports on tokens and accounts.

  • Unified Intelligence: Correlate social events with on-chain market activity.

Core Concepts

  • Social Intelligence: We process millions of tweets per week to extract sentiment, mention volume, and influencer activity related to thousands of tokens.

  • On-Chain Data: We monitor on-chain activity for new tokens, liquidity changes, trading volume, and holder metrics across major blockchains.

  • Unified Intelligence: Our core value lies in the fusion of these two data sets. We don't just tell you that a token's price went up; we show you the social chatter and influencer mentions that may have triggered it.

Getting Started: Your First API Call

Making requests to the RogerAI API is simple. You can be up and running in just a few steps. All endpoints require an API Key and a JWT Bearer Token for authentication.

1. Get Your Credentials

To get access to the API, please contact us on Telegram at @innitforthetech for an API Key and JWT Access Token.

We currently offer custom pricing plans tailored to your specific needs. Tiered pricing will be launching soon!

2. Include Headers in Your Request

All API requests must include the following three headers:

Header

Value

Description

api-key

YOUR_API_KEY

Your private API key.

Authorization

Bearer YOUR_JWT_TOKEN

Your JWT access token, prefixed with "Bearer ".

source

web app

The source of your API call.

3. Make a Request

Let's test your access with a simple request. The following cURL command uses our Discover Trending Cashtags endpoint to find the top 5 cashtags sorted by 24-hour mention volume.

Replace YOUR_API_KEY and YOUR_JWT_TOKEN with your credentials.

curl --location 'https://api.askroger.ai/v1/discover/trending-cashtags?interval=24h&sort_by=mention_volume_desc&limit=5' \
--header 'api-key: YOUR_API_KEY' \
--header 'Authorization: 'Bearer YOUR_JWT_TOKEN'' \
--header 'source: web app'