Get Started
Dive into blockchain insights in just 5 minutes! This guide will equip you with the essentials to unlock the power of Flipside Studio. We'll go over how to:
Explore the data
Steps:
Click on the database icon to access data on 26+ protocols
Quick introduction to how Flipside's data is organized:
Hierarchy: blockchain → schemas -> tables
Read more on our data modeling approach here.

Query data on Flipside
Steps:
Head to flipside.new or launch the Studio and click "+" to create a new query.
Write some SQL! Unsure where to start? Explore our sample query below for inspiration.
Hit "Run Query" (or
CMD+ENTER
on Mac /CTRL+ENTER
on PC/Linux).
-- Top 8 NFT platforms on Ethereum by total sales in the past 30 days
select
platform_name,
count(*) as sales_count
from ethereum.nft.ez_nft_sales
where block_timestamp > current_date - interval '30 days'
group by platform_name
order by sales_count desc
limit 8

Create a Chart
Steps:
Click "Create Visualization" button right next to your query title.
Choose the chart type that best captures your data's essence. Bar, line, pie?
Define the data points by setting your X and Y axes.

4. Build a Dashboard to share your insights
Steps:
Add your chart to a new or existing dashboard.
Title your dashboard
Any finishing touches: adjust layout, add header, text boxes, images!
Publish (don't worry you can always unpublish)
Share by posting on Twitter/X or via URL.
Last updated
Was this helpful?