← All features

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.

API · AUTO-CREATED PER DATASET
# 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/json
SQL PLAYGROUND
SELECT 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.14s

Built to do the work for you

01

Auto-created API

Every dataset gets an endpoint with pagination and filters the moment it lands.

02

SQL playground

Write queries directly against any dataset when you need full control.

03

Open source core

Read the code, self-host with docker-compose or Helm, or let us run it.

Three steps, no setup

  1. 01

    Upload a dataset

    GoPie versions it and stands up a documented REST endpoint automatically.

  2. 02

    Query your way

    Hit the API from your app, or open the SQL playground to explore by hand.

  3. 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.