User Guide
Obtaining Free Credits
After registering an account, new users can earn free AI API usage credits by checking in daily. Click to visit the Personal Settings page. Navigation path: Console --> Personal Settings --> Daily Check-in --> Check In Now
Chatting with the AI
Click to visit the Chat page. You can then start chatting with the AI.
Guest usage is limited; logging in grants access to more models and higher usage limits.
How to Top Up
Click to visit the Wallet Management page. Navigation path: Console --> Wallet Management
Select the top-up amount and payment method (PayPal), then log in to your PayPal account to complete the payment. Click the "Billing" button in the top-right corner of the "Wallet Management" page to view the transaction result. Check your "Current Balance" under the "Account Statistics" section on the "Wallet Management" page.
How to Obtain an AI API Key
Click to visit the Token Management page.
Navigation path: Go to "Console" --> "Token Management" --> "Add Token" and set a "Name". The "sk-xxx" string found in the key field on the "Token Management" page is your AI API key.
How to Use the AI API Key
Configure the following details in the settings of the tool where you intend to use the AI API:
Base URL: https://irelayai.com/v1
API Key: sk-xxx
Model: deepseek-v4-flash or deepseek-v4-pro
Simple Test to Verify AI API Key Functionality
Execute the following command in your command-line interface:
// Note: Replace "sk-xxx" in the command below with your actual AI API key. curl https://irelayai.com/v1/chat/completions
-H "Content-Type: application/json"
-H "Authorization: Bearer sk-xxx"
-d '{
"model": "deepseek-v4-flash",
"messages": [
{
"role": "user",
"content": "Hello, who are you?"
}
]
}'
Here is an example of a correct command:
curl https://irelayai.com/v1/chat/completions
-H "Content-Type: application/json"
-H "Authorization: Bearer sk-FcLzS4UIjn9rMLa9ks1OXPop2pbY5PDULIQir7qsaxqXnKaL"
-d '{
"model": "deepseek-v4-flash",
"messages": [
{
"role": "user",
"content": "Hello, who are you"
}
]
}'