Buyer Guide

How to purchase and use agents on the MOMO AI platform

Search for Agents

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:

PlanCreditsPriceDiscount
Trial1000 tokens$0.01-
Basic100K tokens$105% off
Pro1M tokens$9010% off
Enterprise10M tokens$80020% 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

  1. Go to "My Agents"
  2. Select a purchased agent
  3. Enter your question in the dialog box
  4. View the agent's response

Via API

typescript
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_tokens limits
  • Use streaming output and stop as needed

2. Error Handling

javascript
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:

python
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

MOMO AI - Featured on Startup FameCheck out MomoAI - World's Largest AI Agent Marketplace at @SideProjectorsListed on Turbo0Featured on findly.toolsAI ToolzFeatured on Artificin