Skip to content

Quick Start

Welcome to BigBangToken! This guide walks you through registration, obtaining an API key, and making your first model call.

1. Sign in to the platform

Visit the BigBangToken website, click Sign in in the top-right corner, and complete registration at the sign-in page.

2. Browse the model list

After signing in, open the pricing page to view supported models, pricing, and rate limits.

3. Try models in the playground

Open the Playground, choose a language or image model from the sidebar, enter a prompt, adjust parameters, and click Run to see results in real time.

4. Call the API

4.1 Create an API key

Go to API Keys and click Create API Key. Store the key securely and never share it publicly.

4.2 Call with the OpenAI SDK

Our API is fully compatible with the OpenAI protocol.

Install dependencies:

bash
pip install --upgrade openai

Example:

python
from openai import OpenAI

# Replace YOUR_API_KEY with your BigBangToken API key
client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.bigbangtoken.com/v1"
)

response = client.chat.completions.create(
    model='Pro/deepseek-ai/DeepSeek-R1',
    messages=[
        {"role": "user", "content": "What new opportunities will inference models bring to the market?"}
    ],
    stream=True
)

for chunk in response:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="", flush=True)