Skip to main content
Back to Gateway
databaseOperational

Supabase Query

Execute SQL queries against any Supabase project

Cost per call
$0.0012
Base $0.0010 + 20% gateway fee · per_call
Rate limit60 req/min
Auth typeapi key header
Actions1
Uptime99.9%
Added Mar 28, 2026

Usage Statistics

Total Calls
--
All time
Revenue Generated
--
All time
Avg Response Time
--
Last 24h

Usage statistics will populate once calls flow through this service.

Available Actions(1)

GETquery_table
/businesses

Query the businesses table

$0.00102 params
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number"
    },
    "select": {
      "type": "string"
    }
  }
}

Try It

Call this service through the AgentHermes gateway. One API key handles auth, billing, and logging.

MCPJSON-RPC via MCP Server

jsoncall_service tool
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "call_service",
    "arguments": {
      "service_id": "d25fa58d-ba27-4a99-90fc-3a353bcb7290",
      "action": "query_table",
      "params": {
            "...": "your params"
      },
      "wallet_id": "YOUR_WALLET_ID"
    }
  },
  "id": 1
}

RESTcURL

bash/api/v1/gateway/call
curl -X POST https://agenthermes.ai/api/v1/gateway/call \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "service_id": "d25fa58d-ba27-4a99-90fc-3a353bcb7290",
    "action": "query_table",
    "params": {},
    "wallet_id": "YOUR_WALLET_ID"
  }'

PythonSDK

pythonpip install hermes-sdk
from hermes import AgentHermes

client = AgentHermes(api_key="YOUR_API_KEY")

result = client.call_service(
    service_id="d25fa58d-ba27-4a99-90fc-3a353bcb7290",
    action="query_table",
    params={},
    wallet_id="YOUR_WALLET_ID",
)

print(result.data)
print(f"Cost: {result.billing.total_charged{'}'}")
print(f"Latency: {result.meta.response_ms{'}'}ms")

How to Use This Service

Recommended

Through AgentHermes Gateway

Use our MCP server or REST API. We handle authentication, billing, and logging for every call.

Cost: $0.0012/call
One API key for all services
Built-in usage tracking & budgets
Encrypted credential vault
Get Started

Direct Connection

Visit Supabase Query directly to get your own API key. Use their API without the gateway.

Cost: $0.0010/call (base rate)
You manage your own API keys
You handle auth and billing
No unified agent dashboard
Visit Supabase Query

Response Format

json200 OK
{
  "success": true,
  "data": { "..." },
  "billing": {
    "cost": 0.0010,
    "margin": 0.0002,
    "total_charged": 0.0012
  },
  "meta": {
    "service_name": "Supabase Query",
    "action_name": "query_table",
    "status_code": 200,
    "response_ms": 142
  }
}