💰 Credits Balance
Loading balance...
Your API Keys
Loading keys...
Available Models & Pricing
Loading models...
What are API Keys?
API keys allow you to access CodeBurst AI models programmatically from your code.
Base URL: https://codeburst.ai/api/v1
Example:
# Install OpenAI SDK pip install openai # Use CodeBurst API from openai import OpenAI client = OpenAI( base_url="https://codeburst.ai/api/v1", api_key="YOUR_API_KEY" ) response = client.chat.completions.create( model="codeburst-fast", messages=[{ "role": "user", "content": "Write a binary search" }] ) print(response.choices[0].message.content)