Back to Dashboard
API CATALOG

141 API Integrations

Browse the complete catalog of external APIs available through Enovari. From weather and finance to AI models and cybersecurity tools — all callable via ld_api_call() in any MCP session.

141
Services
30
Categories
254
Endpoints

How to Use the API Catalog

All APIs are accessible through your Enovari MCP connection in Claude Code, Cursor, Windsurf, or any MCP-compatible client. Two commands do everything:

Step 1: Browse — ld_api()

Discover what is available using tree-shaped navigation:

# List all categories ld_api() # Browse a category ld_api(category="weather") # See endpoints for a service ld_api(service_id="open-meteo") # Search across everything ld_api(query="stock price")

Step 2: Call — ld_api_call()

Execute any API with validated parameters. Responses are automatically saved to your working memory.

# Get weather forecast ld_api_call("open-meteo", endpoint="forecast", params={ "latitude": 32.78, "longitude": -79.93 }) # Look up a word ld_api_call("dictionary", endpoint="define", params={ "word": "ephemeral" }) # Search academic papers ld_api_call("semantic-scholar", endpoint="search", params={ "query": "transformer attention mechanism" })

Authentication

Many APIs work without any API key (marked FREE in the catalog). For APIs that require keys, Enovari securely manages credentials through the built-in credential vault. Set keys once, use everywhere.

Rate Limits

Each API has built-in rate limiting to prevent abuse. Enovari automatically tracks your usage and will warn you before hitting limits. Default is 60 calls/hour per service.