Neural DB Console
Zero-Setup Agentic Database API
Ship your MVP in minutes with natural language. No tables, no backend code, no setup. Just generate a key and start building.
Generate Your API Key
Your key gives you access to the Neural DB API with 50 free calls. No credit card needed to start.
Checking for existing key...
How to Use Neural DB
STEP 1
Generate Your API Key
Click the button above to instantly generate a unique API key. Your first 50 calls are free — no credit card required. Powered by Upstash Redis Edge logic.
STEP 2
Copy the Code Snippet
Drop the snippet into your project. One single endpoint handles schema generation, CRUD, and AI intent.
STEP 3
Agentic Database
Use action_type: 'chat' to talk to your virtual DBA, or use strict actions like create_schema and insert_data for deterministic operations.
STEP 4
Monitor & Scale
Track live Redis telemetry, trace IDs, and execution times directly from your API management hub.
Quick Start Snippet
// 1. Define your Schema (Registers into LivingDNA on Edge)
await fetch("https://pulse.evorozen.com/api/neural", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
action_type: "create_schema",
prompt: "Create a users table with name and email",
data_payload: {
tables: [{
name: "users",
columns: [
{ name: "name", type: "text" },
{ name: "email", type: "text" }
]
}]
}
})
});
// 2. Insert Data Programmatically
const res = await fetch("https://pulse.evorozen.com/api/neural", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
action_type: "insert_data",
data_payload: {
table: "users",
record: { name: "Alice", email: "alice@example.com" }
}
})
});
const data = await res.json();
console.log(data);