Quick Start
Quick Start
This guide is built for the KuruData gateway workflow. The goal is to get your first successful request running with the least amount of setup.
Step 1: Confirm the endpoints
- Site:
https://kurudata.net - Docs:
https://docs.kurudata.net - Unified API Base URL:
https://kurudata.net/v1
Step 2: Get an API key
- Sign in to the KuruData console.
- Open the API key or token management page.
- Create a dedicated key and store it securely.
Step 3: Make the first request
If you already use an OpenAI-compatible SDK, you usually only need to replace:
base_urlapi_key
from openai import OpenAI
client = OpenAI(
api_key="your-kurudata-key",
base_url="https://kurudata.net/v1",
)