Prerequisites
- A Deepshi account with credits on it.
- An API key (you’ll create one below).
curl, or Python / Node.js if you prefer an SDK.
1. Create an API key
- Sign in at deepshi.ai.
- Open the API keys section of your dashboard.
- Click Create key, give it a name, and copy the value.
sk-bf-xxxxxxxx. It is shown only once, so store it somewhere safe. See Authentication for details.
2. Make your first call
The API is OpenAI-compatible. The base URL ishttps://api.deepshi.ai/v1 and you authenticate with a bearer token.
3. Pick a model
deepshi-3.0 is Deepshi’s multimodal flagship. Swap the model field to call anything in the catalog. For example, use deepshi-2.0 for the most uncensored responses, or a frontier model like the latest from OpenAI or Anthropic. See Models for the full list, and fetch the live catalog any time:
Next steps
Stream responses
Render tokens as they’re generated.
Call tools
Let the model call your functions.
Reasoning
Use models that think before they answer.
Handle errors
Understand status codes and retries.