Getting started
This guide gets you from sign-up to your first API call.1. Account setup
- Go to llmtune.io and sign up or log in.
- Complete account setup in the dashboard.
- Add payment method and credits if you plan to run inference or fine-tuning (usage is billed from your balance).
2. Create an API key
- In the dashboard, open API Keys.
- Click Create key and give it a name (e.g.
devorproduction). - Copy the key. It is shown only once; store it securely (e.g. in a secret manager or env var).
API keys grant full access to your account (inference, training, usage). Do not commit them to source control or expose them in client-side code.
3. Base URL
Use this base URL for inference and agent endpoints:{modelId} with a supported model ID (e.g. from the models list or dashboard).
4. First request
Example: run completion with a single prompt.5. Chat completions
For multi-turn chat, use the chat completions endpoint with amessages array:
Next steps
- Authentication — Headers and security.
- Inference overview — Endpoints, parameters, and streaming.
- Billing & usage — How usage and balance work.