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?

WeChat PayHow to Pay with WeChat Pay

  1. 1

    Choose an amount

    Select Pay $10, Pay $50, or Pay $100, or enter a custom payment amount on the Wallet page.

  2. 2

    Select Waffo Pancake

    Under Payment Method, choose Waffo Pancake to continue to its checkout.

  3. 3

    Confirm your email

    Check the email address shown on the Your details page, update it if necessary, and click Continue.

  4. 4

    Switch the region to China

    On the payment page, open the country/region selector and change Global to China.

  5. 5

    Complete the payment

    Select WeChat Pay, click Pay, and follow the instructions to finish the payment in WeChat.

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.