Data intelligence for Web 3.0

We are experts in making sense of the vast amount of data produced by the Web 3.0 revolution. We index, clean and archive data from CEX, DEX, NFT Marketplaces, and other events on more than 20 exchanges and 10 blockchains.

Collecting 1TB of uncompressed data every day from leading exchanges

Tuple
Mirage
StaticKit
Transistor
Workcation

Stay on top of the game with real time data feeds

Display real time data feeds through our terminal for more than 6000 instruments on 20 different exchanges. Book depth, ticker, Watch lists, CVDs, ... All the major indicators are covered.

Inbox user interface

Integrate our data provider API

Seamlessly integrate the AlphaData feed into your app, for live trading, back testing, or customer facing app. We support two languages and more to come. Create complex queries and get billed only for what you use. Need more ? Deploy our solution on your infrastructure and get direct access to our bucket of more than 70 TB of raw data.

import github.com/alphaticks/alphaticks-client
client = alphaticks.NewClient(credentials, alphaticks.LIVE)
query = alphaticks.NewQuery()
query.WithFrom(time.Now().Add(-time.Day))
query.WithTo(time.Now())
query.WithSelector("trade")
query.WithTags(map[string]string{
	 "symbol": "BTCUSD"
	 "exchange": "coinbasepro"
})
q = client.Query(query)
for q.Next() {
	 fmt.Println(q.GetObject().Price())
}