Tarseek API
Quickstart
Point an OpenAI-compatible client at https://api.tarseek.com/v1 over TLS. Tarseek does not currently publish a first-party SDK; use the OpenAI SDK with a custom base URL, or call the HTTP API directly.
1. Create an API key
Sign in, open a project, and create a key. Live keys use the trsk_live_ prefix. Create and revoke keys in the dashboard. There is no public key-management API.
2. Make a chat request
from openai import OpenAI
client = OpenAI(
api_key="trsk_live_...",
base_url="https://api.tarseek.com/v1",
)
completion = client.chat.completions.create(
model="openai/gpt-4o-mini",
messages=[{"role": "user", "content": "Say hello from Tarseek."}],
)
print(completion.choices[0].message.content)Use a model ID from the Models docs. Do not hardcode provider-specific aliases unless the catalog lists them.
