Back to chat
Compute API

Developer API keys

Run inference on the ParalleliX network from your own code, an OpenAI-compatible client, or the parallelix-mcp connector for Claude. Calls spend the $PRLX credit balance on your connected wallet.

Your keys

Connect a wallet and sign in (gas-free) to create and manage keys.

Quickstart

Claude (MCP connector)

claude mcp add parallelix \
  --env PARALLELIX_API_KEY=pk_live_your_key \
  -- npx -y parallelix-mcp

OpenAI-compatible endpoint

curl https://api.parallelix.io/v1/chat/completions \
  -H "Authorization: Bearer pk_live_your_key" \
  -H "content-type: application/json" \
  -d '{"messages":[{"role":"user","content":"say hi"}]}'

Parallel batch (the differentiator)

curl https://api.parallelix.io/v1/batch \
  -H "Authorization: Bearer pk_live_your_key" \
  -H "content-type: application/json" \
  -d '{"prompts":["classify A","classify B","classify C"]}'
# poll: GET /v1/batch/{batchId} for per-item results + Proof-of-Execution

The network runs open-source models (currently 7B-class). It is a cheap parallel executor for bulk independent sub-tasks, not a frontier model. Credits are metered off-chain by the coordinator (deposit $PRLX once, no per-call gas).