Quick Start
Quick Start
This guide is built for the OpenFrog 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://openfrog.io - Docs:
https://docs.openfrog.io - Unified API Base URL:
https://openfrog.io/v1
Step 2: Get an API key
- Sign in to the OpenFrog 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-openfrog-key",
base_url="https://openfrog.io/v1",
)