DocsIntroductionQuick Start

Quick Start

Introduction

You can connect Zukko in a few minutes. Here is the minimum setup to send your first request.

Step 1. Create an API key

Create a key in the Zukko dashboard with the fetch_ prefix.

bash
fetch_xxxxxxxxxxxxxxxxxxxxx

Step 2. Set the base URL

For OpenAI-compatible clients use:

bash
https://api.zukko.pro/v1

For Anthropic-compatible clients use:

bash
https://api.zukko.pro

Step 3. Send your first request

bash
curl https://api.zukko.pro/v1/messages \
  -H "Authorization: Bearer fetch_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -H "anthropic-version: 2023-06-01" \
  -d '{"model":"claude-sonnet-5","max_tokens":256,"messages":[{"role":"user","content":"Hi"}]}'

Step 4. Connect your IDE or SDK

Once the test works, you can connect Cursor, Claude Code, VS Code, Codex, or your own scripts through OpenAI / Anthropic SDKs.

Quick Start · Zukko