See the actual data before you commit to anything.

Equities, options, futures, future options. Up to a year of historical data. Run SQL or Python against the actual datasets, download what you need, or hit the API. No credit card required.

sandbox.algoseek.com / notebook / aapl-minute-bars.ipynb

Workspace

Notebook

SQL Client

Download

</> API

Browse

Datasets

Packages

aapl-minute-bars.ipynb

▶ Run

# Query AAPL minute bars, all 90 fields
import algoseek
client = algoseek.Client()
bars = client.get_bars( symbol=‘AAPL’, bar_type=‘minute’, date=‘2025-03-14’)

✓ 390 rows · 90 fields · 0.41s

bars[[‘time’, ‘open’, ‘high’, ‘low’, ‘close’, ‘volume’, ‘vwap’]].head(5)

timeopenhighlowclosevolumevwap
09:30213.41213.89213.12213.671,241,830213.54
09:31213.68214.02213.41213.93892,104213.71
09:32213.94214.17213.66214.08743,219213.92
09:33214.09214.31213.88214.22651,087214.10
09:34214.23214.44214.01214.38587,331214.28

aapl_volume_analysis.sql

▶ Execute

SELECT date, ticker,
   SUM (volume) AS total_vol,
   AVG (vwap) AS avg_vwap,
   COUNT (*) AS bars
FROM eq_mb_taq
WHERE ticker = ‘AAPL’
AND date BETWEEN ‘2025-01-02’ AND ‘2025-03-14’
GROUP BY date, ticker
ORDER BY date

✓ 49 rows · 0.28s

datetickertotal_volavg_vwapbars
2025-01-02AAPL58,241,092243.18390
2025-01-03AAPL47,103,881242.67390
2025-01-06AAPL63,892,410241.93390

Download

Export CSV

Query first, then download exactly the rows you need.

Dataset

eq_mb_taq

Filter

AAPL · 2025-03-14

Rows

390 rows × 90 fields

Format

CSV · 2.4 MB

You only download the specific rows your query selected. The compute and filtering happens inside ArdaDB, so you pull exactly what you need, not the entire dataset.

RESTful API

Copy cURL

Request

GET /v1/bars/eq_mb_taq
  ?symbol= AAPL
  &date= 2025-03-14
  &fields= time,open,high,low,close,volume
  &limit=5

Response 200 OK · 0.31s

{
   “rows”: 390,
   “data”: [
     { “time”: “09:30”, “open”: 213.41,
      “high”: 213.89, “close”: 213.67 },
     { “time”: “09:31”, … },
     { “time”: “09:32”, … }
   ]
}

Test your API integration against real algoseek data before committing to a subscription.

Skip the evaluation queue

Most vendor evaluations take weeks of emails and NDAs before you see a single row. This one takes seconds.

Other vendors send you a sample CSV after a week of emails. algoseek lets you query the data yourself, with your own tools, on your own schedule.

Write SQL against the full archive

ArdaDB powers the SQL environment. Subsecond responses on most queries across tick-level equities, options, and futures data. Write the queries you would actually use and see how the data responds.

  • Any ClickHouse-compatible SQL client
  • Subsecond on most queries across terabytes
  • Powered by ArdaDB

Explore in Python without leaving your browser

Pre-configured Jupyter notebooks with the algoseek Python library already installed. Build your analysis in the browser. Export notebooks and results when you are done.

  • algoseek Python library preinstalled
  • Connected to ArdaDB
  • Download notebooks and results

Download the data you need to your machine

Query first, then download the results as CSV. Bring algoseek data into your local tools, your backtesting framework, or your existing pipeline.

  • Query-filtered downloads
  • CSV format
  • Same data as SQL and notebook access

Integrate directly into your pipeline

The algoseek RESTful API runs on ArdaDB. Pull data programmatically from any language or platform. Build and test your integration before committing to a subscription.

  • Test against real data
  • Any language, any platform
  • JSON responses

We built the Sandbox because the data speaks for itself.

Most vendors gate their data behind sales calls and NDAs because they need to control the conversation. algoseek would rather you see the data first and talk to us after.

Next steps

Validate the data first. Then choose the dataset or package that fits.

Explore the data

Explore the data

Browse datasets across equities, options, futures, and future options. Up to a year of historical data.

Test with your own code

Test with your own code

Run your queries, build your notebooks, hit the API. Confirm the data works for your specific requirements.

Subscribe

Subscribe to a dataset or package

Full historical archive, daily updates, all delivery methods. Up to 10 users per subscription.

Add real-time

Add real-time when ready

Low latency streaming feeds from Mercury. Co-location at Equinix or delivery to your cloud.

See the data for yourself. That is all we ask.

The Sandbox is the fastest way to find out whether algoseek data is what your team needs. No credit card required.