Search for Agents
Using the Search Box
Enter keywords in the search box on the homepage, for example:
- "Programming Assistant"
- "Data Analysis"
- "Image Generation"
- "Text Translation"
Browse by Category
Click "Explore Market" in the top navigation bar to browse by category:
- Office Automation
- Content Creation
- Data Analysis
- Programming & Development
- Design & Creativity
- Education & Learning
Evaluate Agents
On the agent details page, you can view:
Basic Information
- Agent name and description
- Developer information
- Listing date
Performance Metrics
- Response speed
- Accuracy
- User ratings
Pricing Information
- Billing method (per token / per call)
- Unit price
- Package discounts
User Reviews
- Overall rating
- User comments
- Use cases
Purchase Process
1. Select a Plan
Choose the appropriate plan based on your needs:
| Plan | Credits | Price | Discount |
|---|---|---|---|
| Trial | 1000 tokens | $0.01 | - |
| Basic | 100K tokens | $10 | 5% off |
| Pro | 1M tokens | $90 | 10% off |
| Enterprise | 10M tokens | $800 | 20% off |
2. Confirm Order
- Check agent information
- Confirm purchase amount
- View total price
3. Complete Payment
Supported payment methods:
- WeChat Pay
- Alipay
- Bank cards
- Corporate bank transfer
4. Get API Key
After successful payment, the system will automatically generate an API Key. You can view it in "My Account".
Use Agents
Via Web Interface
- Go to "My Agents"
- Select a purchased agent
- Enter your question in the dialog box
- View the agent's response
Via API
import axios from 'axios';
const response = await axios.post(
'https://api.momoai.pro/v1/agents/159',
{
prompt: 'Help me write a bubble sort algorithm',
temperature: 0.7,
max_tokens: 1000
},
{
headers: {
'Authorization': `Bearer ${YOUR_API_KEY}`,
'Content-Type': 'application/json'
}
}
);
console.log(response.data.content);
View Usage
In "My Account", you can view in real-time:
- Remaining credits
- Usage history
- Spending statistics
Best Practices
1. Control Token Usage Wisely
- Streamline prompts, avoid redundant information
- Set reasonable
max_tokenslimits - Use streaming output and stop as needed
2. Error Handling
try {
const response = await callAgent(prompt);
handleSuccess(response);
} catch (error) {
if (error.code === 'INSUFFICIENT_BALANCE') {
// Insufficient balance, prompt user to recharge
showRechargeDialog();
} else if (error.code === 'RATE_LIMIT') {
// Rate limit triggered, retry after delay
retryAfterDelay(5000);
} else {
// Other errors
handleError(error);
}
}
3. Batch Processing
For large amounts of data, using the batch API can improve efficiency:
import requests
prompts = [
"Translate to English: Hello",
"Translate to English: World",
"Translate to English: Agent"
]
responses = requests.post(
'https://api.momoai.pro/v1/agents/152/batch',
json={'prompts': prompts},
headers={'Authorization': f'Bearer {API_KEY}'}
)
for result in responses.json()['results']:
print(result['content'])
FAQ
Q: How long is the validity after purchase?
A: Purchased credits are valid permanently and do not expire.
Q: Can I purchase multiple agents at the same time?
A: Yes. You can purchase any number of agents, and the system will automatically manage your credits.
Q: How to get an invoice?
A: Select the orders you need to invoice in "My Orders", fill in the invoice information. Electronic invoices will be sent to your email within 3 working days.
Q: What if an agent suddenly becomes unavailable?
A: If an agent experiences issues or is delisted, we will notify you in time and support full refunds or replacement with other agents.
Contact MOMO AI Official
- Email: partnership@momoai.wecom.work
- Business: 13716105018
- Technical Support: 13815831618

