Quickstart

Get started with Vtrix API in 5 minutes. This guide shows how to use LLM models and multi-modal models.

Before you begin, you need an API key. Go to Settings to create one.

Get Your API Key

1

Visit Account Settings

Go to your Account Settings.

2

Create API Key

Click "Create API Key".

3

Save Your Key

Copy and save the key (shown only once).

Use LLM Models (Text Chat)

Chat with any LLM model. Here are complete code examples:

curl 'https://cloud.vtrix.ai/llm/chat/completions' \
 -H "Authorization: Bearer YOUR_API_KEY" \
 -H 'Content-Type: application/json' \
 -d '{ 
 	"model": "vtrix-gpt-5", 
 	"messages": [{"role":"user","content":"hello"}] 
 }'

Use AI Agents (Specialized Capabilities)

AI Agents are specialized AI assistants with tool-calling and multi-modal capabilities:

Visit Agent Studio to browse available Agents, or see Agent API docs for detailed usage.

Use Multi-Modal Models (Image Generation)

Generate images using Google Gemini 3 Pro Image. This example shows how to call multi-modal models:

Last updated