WoWSQL Overview

Getting Started with WoWSQL

WoWSQL is a MySQL-powered Backend-as-a-Service platform that gives you instant APIs, authentication, file storage, and realtime capabilities—all without managing servers.

What is WoWSQL?

WoWSQL transforms your MySQL database into a fully-featured backend in seconds. Create a table, get instant REST APIs. Enable auth, get user management. Upload files, get S3-compatible storage. Everything you need to build modern applications.

Why WoWSQL?

  • Instant APIs - Create tables, get REST endpoints automatically
  • Built-in Auth - Email, OAuth, 2FA, magic links—all included
  • File Storage - S3-compatible storage with presigned URLs
  • Realtime - WebSocket subscriptions for live data updates
  • MySQL Power - Full SQL support with stored procedures, triggers, views
  • 11+ SDKs - Python, JavaScript, Go, Java, Swift, and more

Quick Start

  1. Sign up at wowsql.com
  2. Create your project in the dashboard
  3. Copy your API key from project settings
  4. Start building with instant APIs!

Your First API Call

Once you create a table in your project, you can immediately query it:

curl -X POST https://api.wowsql.com/api/v1/db/tables/users/query \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "X-Project-Slug: your-project-slug" \
  -H "Content-Type: application/json" \
  -d '{
    "filters": [
      {"column": "status", "operator": "eq", "value": "active"}
    ],
    "limit": 10
  }'