Blokiments Docs
  • 🚀Welcome to Blokiments Docs
  • ⭐Start here
    • Build your first advanced signal bot
    • Crypto Security Tips
    • Essential Checklist Before Buying Any Crypto Token
  • ❓Frequently Asked Questions
  • 🛣️Roadmap and Releases
    • Releases
    • Supported Networks
  • 🧑‍🤝‍🧑Referral Program
  • FEATURES
    • Strategies
    • Discovery Hub
      • Filters guide
        • General filters
        • Social filters
        • Security filters
        • Trading filters
        • Our scores
    • Token Analyzer
      • Security metrics
      • Social metrics
    • Caller tracker & analysis
      • Finding well performing callers
      • Caller analyzer
      • Real-Time Alerting
    • Smart Money analysis
      • Find smart money wallets
      • Analyze wallets with ease
      • Track wallets in real-time
    • Watchlists
    • Alerts
      • Telegram Alerts
      • Discord Alerts
      • Webhook Alerts
    • Search
    • Telegram Token Checker Bot
    • Blokiments API
      • Google Sheets Integration
      • Get historical price data
  • GUIDES
    • 🔥Strategy building guides
    • 📚Blog
      • Security
        • Smart contract honeypot analysis
        • Rug pullls
        • Pump Scammer Analysis
        • Smart money scammer
        • Token Sewage Spill on Base
      • Tokenomics
      • Presales
      • 💧Liquidity
        • Liquidity pools
      • Getting Slipped? Or getting MEV’d?
      • Smart Token Sniper
      • Token Comparison Workflow
      • The Value of Merging On-Chain and Off-Chain Data in Token Analysis
      • The bad, worse, and the worst
      • Caller tokens analysis
      • In-depth token analysis
        • In depth: RFC
        • In depth: Magnetix
        • In depth: House
      • In-depth wallet analysis
        • Wallet report #1
        • Wallet report #2
        • Wallet report #3
    • 📑Useful resources
      • Twitter
      • Github
      • Webpages
  • About
  • Legal
    • Terms and Conditions
  • LINKS
    • App
    • Twitter
    • Community
Powered by GitBook
On this page

Was this helpful?

  1. FEATURES
  2. Blokiments API

Get historical price data

Get historical data using our OHLCVM endpoint.

PreviousGoogle Sheets IntegrationNextStrategy building guides

Last updated 1 month ago

Was this helpful?

Learn how to use the .

Are more requests needed? A subscription can be made via the RapidAPI platform:

This API provides historical OHLCV (Open, High, Low, Close, Volume) and Market Cap data for a selected token on various blockchain networks. If no activity is detected within a given interval, that interval is skipped.

The API requires an API key to be included in the request header for authorization.

Example Response:

{
  "network": "ethereum",
  "pair_address": "0x123456789abcdef",
  "token_address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
  "token_name": "Sample Token",
  "token_symbol": "STK",
  "from_datetime": "2024-05-05T00:00:00",
  "number_of_intervals": 120,
  "time_bucket": "1d",
  "circulating_supply": 1000000000,
  "data": [
    {
      "timestamp": "2024-05-05T00:00:00",
      "open": 0.05,
      "high": 0.06,
      "low": 0.04,
      "close": 0.055,
      "volume": 1000000,
      "market_cap": 55000000
    }
  ]
}
token historic OHLCV and Market Cap data endpoint
https://rapidapi.com/blokiments/api/blokiments-data-api