Back to Services
Basic Trustrest
Outerbase — Natural Language to SQL
Convert natural language questions to SQL queries and execute them against connected databases. Supports PostgreSQL, MySQL, SQLite, and SQL Server with schema-aware generation.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
sqldatabasenatural-languagetext-to-sqlqueryagent-tool
Quick Integration
Call this service through the Agent Clear proxy
// Call Outerbase — Natural Language to SQL through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/a027aaef-3fda-421d-ac5c-3966026e3325',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"question"
],
"properties": {
"execute": {
"type": "boolean",
"description": "Execute the generated query"
},
"question": {
"type": "string",
"description": "Natural language question about the data"
},
"connection_id": {
"type": "string",
"description": "Database connection identifier"
},
"schema_context": {
"type": "string",
"description": "DDL or table descriptions for context"
}
}
}Output Schema
{
"type": "object",
"properties": {
"sql": {
"type": "string"
},
"results": {
"type": "array"
},
"explanation": {
"type": "string"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 30 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026