Built for everyone, open for builders
No technical knowledge required to use GoPie, but every technical door stays open. Each dataset gets a versioned API endpoint, and a SQL playground for when you would rather write the query yourself.
# every dataset, instantly an endpoint
curl https://api.gopie.ai/v1/datasets/
graduation_rates/data
-H "Authorization: Bearer $TOKEN"
-d state=Tennessee
→ 200 OK · application/jsonSELECT state,
ROUND(AVG(grad_rate), 1) AS avg_grad_rate
FROM graduation_rates
WHERE year >= 2019
GROUP BY state
ORDER BY avg_grad_rate DESC;
→ 5 rows · 0.14s01 · What you get
Built to do the work for you
Auto-created API
Every dataset gets an endpoint with pagination and filters the moment it lands.
SQL playground
Write queries directly against any dataset when you need full control.
Open source core
Read the code, self-host with docker-compose or Helm, or let us run it.
02 · How it works
Three steps, no setup
- 01
Upload a dataset
GoPie versions it and stands up a documented REST endpoint automatically.
- 02
Query your way
Hit the API from your app, or open the SQL playground to explore by hand.
- 03
Wire it into anything
Feed dashboards, notebooks or your own product. The chat and the raw data share one backend.
Plain-language answers on top, clean data plumbing underneath. The same dataset, served both ways.