Qurak

The HTTP API

One endpoint, a bearer token, and a computational engine behind it.

The workbench: an expression, a run button, a result Qurak Run History Account Expression Integrate[Sin[x]^2, x] Run 3 s budget · 20 a minute Result x/2 - Sin[2 x]/4
An illustration of the workbench, not a screenshot: the real one is a sign-in away.

Send an expression, get an answer

Create an account, mint a token on your profile page, and post to the evaluate endpoint. Nothing else is required and there is no SDK to install.

curl
curl -X POST https://qurak.com/api/evaluate \
  -H 'Authorization: Bearer qk_...' \
  -H 'Content-Type: application/json' \
  -d '{"input": "Integrate[Sin[x]^2, x]"}'

Described where machines look

The full surface is published as OpenAPI, and this deployment describes itself to agents in the two files they look for. Nothing here needs a human to read it first.

openapi.json · llms.txt · agents.md

Or skip the API entirely

If what you are building is an AI agent, the MCP server is the shorter path: your client discovers the tools itself, and a session keeps state between calls.

Connect an MCP client · See pricing