Authenticate with X-API-Key, respect rate limits, and automate ToolVerse from your stack.
All marketplace requests use the JSON envelope { success, data }.
Send your secret key in the X-API-Key header. Keys are shown once at creation — store them securely.
curl -X GET "https://tool-verse.online/api/v1/tools/" \ -H "X-API-Key: tv_live_…" \ -H "Accept: application/json"
Download the machine-readable schema for code generation and Enterprise integrations.
OpenAPI JSONUse the workspace package @toolverse/api-client for marketplace and mobile endpoints. Regenerate the stub with manage.py generate_sdk.
npm install @toolverse/api-client
import { ToolVerseApiClient } from "@toolverse/api-client";
const client = new ToolVerseApiClient({
apiKey: process.env.TOOLVERSE_API_KEY!,
clientPlatform: "web",
});
const tools = await client.listTools({ compact: true });Monthly invoice drafts are generated from API usage aggregates. They stay draft until you reconcile billing externally.
Developer organizations, usage analytics, and invoice stubs for billed API access. Create an org from your account API or contact sales for Enterprise tier.
Loading…