Quickstart
Get from zero to your first API query in under 5 minutes.
1. Create an account
Go to celdrax.com and sign in with your Google account. That's it — no forms, no email verification.
2. Create a database
In the dashboard, click New Database, pick a name and choose the engine:
- Relational — SQL Server. Tables, columns, foreign keys.
- Non-relational — MongoDB. Flexible collections, no schema required.
Free plan
The free plan includes 1 database, 1,000 requests/month and 10,000 records.
3. Define your tables
Open your database and click New Table. Add the columns you need — name, type, PK, nullable, auto-increment. Celdrax creates the table instantly in a real SQL Server instance.
4. Generate an API token
Go to the API Tokens section and click New Token. Choose which database it accesses and which permissions it has (SELECT, INSERT, UPDATE, DELETE).
Save your token
The token is shown only once. Copy it before closing the dialog.
5. Query your data
curl -X POST https://celdrax.com/api/mydb/users \
-H "Authorization: Bearer cxk_your_token_here" \
-H "Content-Type: application/json" \
-d '{ "verb": "select", "limit": 10 }'Response:
{
"success": true,
"data": {
"rows": [...],
"count": 3
}
}That's it. You have a working database API.