Quickstart
Get to one working path fast.
Use the tool lane for supported IDE and CLI workflows. Use the API lane for scripts, integrations, and backend traffic.
Choose a lane
Pick the setup path that matches the job.
Plans are for regular coding inside supported tools. API keys are for direct requests to the OpenSlash gateway.
Tool lane
Install the CLI, sign in once, and run setup. OpenSlash configures supported IDE assistants and CLI clients for regular coding work.
API lane
Create an API key, point your client at `https://api.openslash.net/v1`, and send the same OpenAI-compatible request shape you already use.
Tool setup
1. Install the CLI
npm install -g openslash
2. Sign in and run setup
openslash login openslash setup --yes
API setup
1. Set base URL and key
export OPENAI_BASE_URL=https://api.openslash.net/v1 export OPENAI_API_KEY=cfx_live_xxxxxxxxxxxxx
2. Validate one request
curl https://api.openslash.net/v1/chat/completions \
-H "Authorization: Bearer cfx_live_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
\"model\": \"gpt-5.4\",
"messages": [{ "role": "user", "content": "Write a binary search in TypeScript." }]
}'Next step
Validate one lane, then keep moving.
If you are setting up supported tools, go to the setup workspace. If you need direct traffic, go straight to API keys and make the first request with `gpt-5.4` or another supported model.
ContinueOpen the next surface without extra detours.Pricing explains the billing lane. The portal is where setup and API management happen after sign-in.