đ¤Deploy Agentic AI with $VIRAL
Our trained planning models will be available via API, allowing you to integrate sophisticated computer-control AI into your applications.
Stay tuned!
Authentication
All API calls require payment in $VIRAL tokens. You'll need to:
Hold $VIRAL in your connected wallet
Include your wallet address in the authentication header
Sign API requests using your wallet
Endpoints
POST https://api.viralmind/v1/plan
( Coming soon )
{
"goal": "Order a pepperoni pizza from Dominos",
"current_state": {
"messages": [],
"screenshot": "<base64 encoded>",
"viewport": {
"width": 1920,
"height": 1080
}
},
"max_steps": 10
}
Response Format
{
"plan": [
{
"action": "click",
"target": "Order Online button",
"coordinates": [245, 123]
},
{
"action": "type",
"text": "pepperoni",
"target": "search field"
},
// Additional steps...
],
"estimated_cost": "0.05 $VIRAL"
}
Last updated