MCP, Postgres credentials, a modeled schema, BYO database if you have one.
CREATE TABLE amazon.orders ( order_id text PRIMARY KEY, marketplace_id text NOT NULL, purchase_date timestamptz NOT NULL, order_status text NOT NULL, order_total_cents integer, order_total_currency text, last_synced_at timestamptz NOT NULL DEFAULT now() ); CREATE TABLE amazon.order_items ( order_item_id text PRIMARY KEY, order_id text REFERENCES amazon.orders(order_id), sku text NOT NULL, asin text NOT NULL, quantity integer NOT NULL, unit_price_cents integer NOT NULL );
-- Top 10 SKUs by units sold, last 30 days.
SELECT
oi.sku,
SUM(oi.quantity) AS units_sold,
SUM(oi.quantity * oi.unit_price_cents) / 100.0
AS revenue
FROM amazon.order_items oi
JOIN amazon.orders o USING (order_id)
WHERE o.purchase_date >= now() - interval '30 days'
AND o.order_status = 'Shipped'
GROUP BY oi.sku
ORDER BY units_sold DESC
LIMIT 10;
| sku | units_sold | revenue |
|---|---|---|
| DB-SKU-00471 | 8,412 | 142,931.04 |
| DB-SKU-00133 | 6,902 | 98,440.18 |
| DB-SKU-00208 | 5,178 | 87,205.62 |
| DB-SKU-00059 | 4,815 | 71,290.55 |
| DB-SKU-00342 | 4,193 | 68,512.41 |
| DB-SKU-00917 | 3,847 | 54,331.79 |
| DB-SKU-00088 | 3,215 | 47,892.30 |
| DB-SKU-00610 | 2,950 | 41,067.84 |
| DB-SKU-00754 | 2,617 | 38,114.92 |
| DB-SKU-00021 | 2,344 | 29,608.51 |
Your data is trapped in rented dashboards and export files you have to piece together yourself.
A dashboard only lets you look at the numbers. A real database lets you work with them.
Your data should belong to you. Act like it.
Documented, versioned, queryable. Same schema across managed Postgres and bring-your-own. Backfilled from your earliest SP-API access date.
| Table | Rows | Updated |
|---|---|---|
| amazon.orders | 12.4M | 2m ago |
| amazon.order_items | 38.1M | 2m ago |
| amazon.advertising_campaigns | 2.1M | 5m ago |
| amazon.search_query_performance | 8.7M | 1h ago |
| amazon.brand_analytics_top_search | 3.4M | 1d ago |
| amazon.inventory_summary | 2.9M | 4m ago |
Plus 30+ more tables across SP-API, Advertising, Brand Analytics, Search Query Performance, and Vendor retail analytics. New report types ship continuously.
Secure OAuth to Selling Partner and Advertising APIs. Takes three minutes. We handle token rotation and renewals.
Use our managed Postgres (live in 60 seconds) or bring your own. The pipeline is the same; the destination is yours.
Scheduled syncs, historical backfill, real-time status, alerts on drift. You watch the pipeline run, you don't run it.
Write SQL. Plug in Looker, Tableau, Metabase. Point Claude or Cursor at the warehouse. No limits, no fees, no permission asked.
You've built a real business on Amazon. Get data infrastructure that matches.
Stop logging into ten dashboards. One warehouse with clean account-code separation.
Postgres credentials. Documented schema. No vendor lock-in. Build on top.
SSO, regional residency, MSA, customer-managed keys. On request.
Account-management services do tasks for you. DataBrill Core gives you the data to do anything.
| Feature | Traditional account mgmt | DataBrill Core |
|---|---|---|
| Service Model | Manual operations team | Automated data infrastructure |
| Data Ownership | Lives in their platform | Lives in YOUR database |
| Access to Raw Data | Limited exports, fees | Full SQL access, unlimited |
| BI Tool Integration | Screenshots and CSVs | Direct SQL connection |
| Custom Analytics | Request reports, wait days | Query yourself, instant |
Account management services do operational tasks for you (updating listings, responding to buyers, managing ads). DataBrill Core is data infrastructure, we extract your Amazon data into your database so you can do whatever analysis and automation you want. Think of us as your data pipeline, not your operations team.
Yes. On the Starter tier and above you can connect a Postgres you already run: RDS, Supabase, Neon, your own VPC, whatever. We write into the schema you point us at and you keep the credentials. The pipeline is the same, the destination is yours.
Selling Partner API (orders, items, refunds, FBA, finances, returns), Advertising API (Sponsored Products, Brands, Display, DSP, campaigns, ad groups, keywords, placements), Brand Analytics, Search Query Performance, and Vendor Central retail analytics. We add report types continuously.
For basic use, no. We handle the connection and syncs and you can export to CSV or connect Looker Studio in clicks. For advanced use (custom SQL, BI integrations), some SQL helps but isn't required. Many customers have their data team write queries while ops and finance just consume the results.
Flat per-workspace pricing. Unlimited marketplaces and merchant accounts at every tier. No seat tax, no per-order metering, no charges on the queries you run against your own database. See the pricing page for details.
If you bring your own database, nothing happens. The data is already yours and stays put. If you're on managed Postgres, we hand you a dump of everything we've extracted on your behalf, no strings attached.
Your complete Amazon dataset in one Postgres.