Getting Started

Getting Started

Create an API key and send your first UnifyLLM request in a few minutes.

Create an Account or Sign In

New to UnifyLLM? Create an account. If you already have an account, sign in to continue.

Add Balance to Your Account

New users can join the TG group and DM @sunsky89757 with their user ID to receive ⚡️3 in trial credit. You can also add funds directly from the Wallet page.

The Wallet supports two funding methods: choose Waffo Pancake under Payment Method to pay online, or click Get one here under Have a Code? to purchase a redemption code, then enter and redeem the code on the same page.

Wallet funding options: Waffo Pancake under Payment Method, or a redemption code under Have a Code?

Create an API Key

Once your account has a balance, open the API Keys menu and create a key. Store the key securely and never expose it in browser code or a public repository.

Choose a Group and Model

When creating a key, select the group that fits your needs. Each group provides access to different models and pricing. Review the available options in Model Square before making a selection.

After completing these steps, continue to Send Your First Request.

Send Your First Request

Send a Chat Completions request to https://api.unifyllm.top. Replace <YOUR_API_KEY> with a key from your console.

bash
1curl --request POST \2  --url 'https://api.unifyllm.top/v1/chat/completions' \3  --header 'Authorization: Bearer <YOUR_API_KEY>' \4  --header 'Content-Type: application/json' \5  --data '{6    "model": "gpt-5.6-sol",7    "messages": [8      { "role": "user", "content": "Hello, UnifyLLM" }9    ]10  }'

Review Your Usage

After sending a request, open Usage Logs in the console to review every API call, including the model, token usage, response time, and actual cost.

Usage Logs provides a detailed record of every API call.