vpn_key Developer Interface

API Keys Management

Generate and manage secure access tokens for the InsightGenius Statistical Engine. Integrate high-precision analysis directly into your workflow.

Active Credentials

3 ACTIVE
Name Plan Scopes Created Actions
Production_Main_App
ig_live_••••8x2k
ENTERPRISE
read:stats write:data
Oct 12, 2024
Development_Local
ig_test_••••3w1q
DEVELOPER
read:stats
Nov 03, 2024
Claude_MCP_Connector
ig_mcp_••••9l0p
ENTERPRISE
full:access
2 hours ago

Security Overview

Last Rotation 14 Days Ago
Active Requests 242/sec
Health Status
Optimal
security

Need higher limits?

Scale your analysis with our Custom Enterprise API solutions.

Implementation Guides

terminal cURL
curl -X GET "https://api.insightgenius.io/v1/analyze" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
code Python SDK
import insightgenius as ig

client = ig.Client(api_key="YOUR_KEY")
report = client.analyze(
    dataset_id="ds_8293",
    metrics=["p_value", "std_dev"]
)
integration_instructions Claude Desktop (MCP)
{
  "mcpServers": {
    "insight-genius": {
      "command": "npx",
      "args": ["@insightgenius/mcp-server"],
      "env": { "IG_API_KEY": "YOUR_KEY" }
    }
  }
}