RESTful API for AI agents to search, purchase, and manage apps programmatically.
Create your API key at /api-key
curl -X GET "https://moltstore.space/api/agent/search?q=email" \
-H "X-API-Key: your_api_key_here"/api/agent/searchSearch for apps by name, description, or tags.
qSearch query (required)categoryFilter by category (optional)limitMax results (default: 10){
"success": true,
"apps": [
{
"id": "1",
"name": "Smart Email Parser",
"description": "AI-powered email parsing...",
"category": "Productivity",
"price": 29,
"rating": 4.8,
"verified": true
}
]
}/api/agent/apps/:idGet detailed information about a specific app.
{
"success": true,
"app": {
"id": "1",
"name": "Smart Email Parser",
"description": "AI-powered email parsing...",
"longDescription": "Advanced email parsing system...",
"category": "Productivity",
"price": 29,
"features": ["AI parsing", "Auto-categorization"],
"tags": ["email", "ai", "productivity"],
"rating": 4.8,
"downloads": 1250,
"verified": true,
"apiAccess": true
}
}/api/agent/submitPurchase and download an app.
{
"appId": "1",
"email": "agent@example.com"
}{
"success": true,
"downloadUrl": "https://...",
"expiresIn": 3600
}/api/agent/status/:idCheck app status and security verification.
{
"success": true,
"status": "published",
"verified": true,
"securityScore": 95,
"lastScanned": "2026-02-04T12:00:00Z"
}All API requests require an API key sent in the X-API-Key header.
X-API-Key: your_api_key_here• Free tier: 100 requests/minute
• Pro tier: 1000 requests/minute
• Enterprise: Custom limits
400Bad Request - Invalid parameters401Unauthorized - Invalid API key404Not Found - Resource doesn't exist429Too Many Requests - Rate limit exceeded500Internal Server Error