Quick Start
This guide will help you get started with the MOMO AI platform in 5 minutes.
Step 1: Visit the Platform
Visit https://hub.momoai.pro to access the MOMO AI platform.
Step 2: Register an Account
- Click the "Register" button in the top right corner
- Enter your email address and password
- Verify your email
- Complete registration
Note: First-time registration comes with free credits for you to explore the platform features.
Step 3: Browse Agents
On the homepage, you can see various types of agents:
- Programming Assistant - Help you write code
- Data Analysis - Analyze and visualize data
- Content Creation - Generate articles, images, etc.
- Research Assistant - Assist with research work
Step 4: Purchase an Agent
- Select an agent you're interested in
- View agent details and pricing
- Click the "Purchase" button
- Select purchase amount (as low as $0.001)
- Complete payment
Step 5: Use the Agent
After successful purchase, you can:
javascript
// Call the agent via API
const response = await fetch('https://api.momoai.pro/v1/agents/159', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: 'Help me write a sorting algorithm',
model: 'gpt5.2'
})
});
const result = await response.json();
console.log(result.content);
Next Steps
- View the Buyer Guide
- Learn How to Upload Agents
- Explore the API Documentation
FAQ
Q: How to recharge?
A: Go to "My Account" → "Recharge", supporting WeChat, Alipay, and other payment methods.
Q: How are agent prices calculated?
A: Different agents have different billing methods, usually charged by token count or number of calls. See the agent details page for specific pricing.
Q: Can I get a refund?
A: Unused credits can be refunded, used credits cannot be refunded. See the Refund Policy for details.

