Quick Start
Query real-time data through API or Postgres Database. Contact us if you would like access for our data.
Get all your realtime data query needs handled with our generalized SQL API

Allium Developer - Raw SQL API
Scale up near infinitely with dedicated access to database replicas
You should have received a 1password link containing the connection details and the following information:
- username
- password
- host ip
- Use credentials above to connect
psql -U <username> -d evm -h <host_ip> -p <port>
! pip install psycopg
import psycopg
pg_conn = psycopg.connect(
"host=... port=... dbname=... user=<username> password=<PASSWORD>",
autocommit=True,
)
pg_conn.execute("SELECT max(timestamp) from polygon.blocks")
Last modified 20d ago