OmniDino
Home Models Pricing Guides About Contact Login Get API Key
EN 中文
Quick Start · About 5 Minutes

From Account Setup to Your First API Call, Complete It Step by Step.

Follow these steps: sign in, check your balance, choose a model, create an API key, configure your client, and send a test request.

Quick Start Workflow Complete 6 steps to start making API calls
01Sign In
02Check Balance
03Choose a Model
04Create an API Key
05Configure a Client
06Verify the API Call
Complete Workflow

Follow the Steps Below.

Different tools may use different interfaces, but the required account, balance, API key, endpoint, and model name are essentially the same.

01
Step One

Sign In or Create an OmniDino Account

Open the OmniDino dashboard and sign in. If you do not have an account yet, register first. After signing in, you can manage your balance, API keys, model access, and usage records from the dashboard.

You can access the OmniDino dashboard successfully.
Confirm that you are using your regular email account.
You can see the balance, API key, and model-related sections in the dashboard.
02
Step Two

Check Your Account Balance

API usage is deducted from your account balance based on model pricing and actual consumption. Before configuring a client, make sure you have enough balance for at least one test request.

Open the wallet, top-up, or balance page in the dashboard.
Make sure your available balance is greater than zero.
If your balance is insufficient, use the available top-up or redemption options.
Refresh the page after topping up and confirm that your balance has been updated.
Billing Note:Input, output, cache, image, and other billing items may vary by model. Refer to the OmniDino model marketplace and dashboard for current pricing.
03
Step Three

Choose Your Tool and Model

Before creating an API key, decide which tool and model you plan to use. This helps prevent choosing the wrong protocol, model name, or key group.

Target Tool Codex, Claude Code, Gemini CLI, Cherry Studio, Dify, or a custom application.
Primary Task Coding, long-form text, reasoning, image generation, data analysis, automation, or general chat.
Key Priorities Model capability, stability, response speed, context length, or cost.
Ready When:You know which model name to enter in the client and have enough balance for a test request.
04
Step Four

Create and Copy an API Key

Open the API key management page and create a dedicated key for the current tool or project. Use a clear name so it is easier to track usage, disable the key, and troubleshoot later.

Name For example: codex-work, claude-code-test, or cherry-personal.
Group or Permissions Choose the appropriate settings for your target model and use case.
Usage Limit Set a small limit for the first test, then adjust it after confirming everything works.
Security Reminder:Treat your API key like a password. Never expose it in frontend code, public repositories, screenshots, forums, or group chats. If you suspect it has been leaked, delete the old key immediately and create a new one.
05
Step Five

Enter the Base URL, API Key, and Model Name

Most clients require three core values. Use the endpoint that matches the client’s protocol, and enter the exact model name shown in the OmniDino dashboard or model marketplace.

OpenAI-Compatible Clients https://api.omnidino.com/v1 Commonly used with Codex, Cherry Studio’s OpenAI provider, and custom OpenAI-compatible applications.
Claude-Compatible Clients https://api.omnidino.com Claude Code and Claude Desktop usually use the root URL and generate the request path automatically.
Protocol Note:Do not automatically add /v1. OpenAI-compatible clients usually use a URL with /v1, while Claude-native clients usually use the root URL.
06
Step Six

Send a Minimal Request to Verify the Setup

Send a simple task in your target client, or use the commands below to verify that the API key and endpoint are working.

OpenAI-Compatible API Verification
curl https://api.omnidino.com/v1/models \
  -H "Authorization: Bearer PASTE_YOUR_API_KEY"
Minimal Chat Completions Request
curl https://api.omnidino.com/v1/chat/completions \
  -H "Authorization: Bearer PASTE_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "ENTER_MODEL_NAME_FROM_DASHBOARD",
    "messages": [
      {
        "role": "user",
        "content": "Reply with: OmniDino connected"
      }
    ]
  }'
Verification Successful:If the client receives a model response and the dashboard shows a usage record or balance change, the basic setup is complete.
Troubleshooting

If a Request Fails, Check These Items in Order.

Start with the most common configuration issues before investigating model, balance, or network problems.

Configuration Checklist

  1. Confirm that the API key was copied in full and contains no leading or trailing spaces.
  2. Confirm that the Base URL matches the client’s protocol.
  3. Confirm that the model name exactly matches the name shown in the dashboard.
  4. Confirm that the API key’s group, permissions, and usage limit allow access to the target model.
  5. Confirm that your account balance is sufficient.
  6. Confirm that your local network can access api.omnidino.com.

When Contacting Support

  • Provide your account email address.
  • Include the tool and operating system version you are configuring.
  • Provide the model name, endpoint, and complete error message.
  • You may include screenshots with sensitive information hidden.
  • Never send your account password or full API key.
  • Support email: [email protected].

Setup Complete. You Can Now Start Using OmniDino.

Your account, balance, API key, endpoint, and model name are ready. Next, open the guide for your target tool or use CC Switch to manage multiple clients.

Continue Reading

Choose the Next Guide.