API Platform

Deterministic tools your agent can actually call

17 small HTTP endpoints for AI builders and delivery teams. Almost none of them run a language model, so the same input returns the same output every time and a call costs about as much as the arithmetic it performs.

Try any endpoint straight from the reference — it has a request console that calls the API from your browser.

Or skip the HTTP entirely

Every endpoint is also an MCP tool. Point Claude, Claude Code, or any MCP host at one URL and the whole toolset appears natively — no client code, no tool definitions to maintain, nothing to redeploy when we ship a new endpoint.

claude mcp add --transport http quasslabs https://api.quasslabs.com/mcp \
  --header "Authorization: Bearer qlk_YOUR_API_KEY"

Auth, rate limiting and credit metering behave exactly as they do over REST, and the gateway is not itself metered — going through MCP never costs more than calling directly.

The 17 endpoints

Prices are per successful call. A rate-limited request is never billed, and anything that fails with a server error is refunded automatically.

How billing works

Predictable

  • Rate limits are checked before credits, so a 429 costs nothing.
  • The decrement is atomic and conditional — if your balance is short you get a 402 and the endpoint does not run.
  • Server errors are refunded automatically.

Known gap

  • There is currently no way to read your credit balance — no endpoint returns it and no header carries it.
  • Today you find out via 402 insufficient_credits. Treat it as an alert, not something to retry.

Full detail in errors and limits, and the machine-readable spec is at openapi.json.