Quickstart

Get started in minutes.

Use the real product path: choose a plan, complete onboarding, receive your first API key, then work through `/me`, `/run`, `/status`, and `/result`.

Step 1

Choose a plan

Start from the pricing page and pick the quota that matches your monthly usage.

Step 2

Complete checkout

Paid plans use provider checkout. Free access requires email verification before the first API key is issued.

Step 3

Receive your first API key

After successful onboarding, your first API key is shown once. Save it immediately.

Step 4

Test /me

curl -s /me \ -H "Authorization: Bearer YOUR_API_KEY"
Step 5

Submit /run

curl -s -X POST /run \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{"script":"print(\"hello\")"}'
Step 6

Poll status and fetch result

curl -s /status/EXECUTION_ID \ -H "Authorization: Bearer YOUR_API_KEY" curl -s /result/EXECUTION_ID \ -H "Authorization: Bearer YOUR_API_KEY"