viralmind.ai
  • Viralmind's Mission
  • The $VIRAL Token
  • Roadmap
  • What Sets Viralmind Apart?
  • Join Our Communities
  • The Team
  • Understanding Computer Use Agents
    • ❓What is a Computer Use Agent?
    • đŸ–Ĩī¸Real World Examples and Use Cases
  • The Forge
    • â„šī¸Introduction
    • 🌀Training Pools
  • Training Gym
    • â„šī¸Introduction
    • 🔄How It Works
    • đŸĒ§Demonstrations
    • 📊Demonstration Data
  • Inference API
    • 🤖Deploy Agentic AI with $VIRAL
  • Frequently Asked Questions
    • ❓General FAQs
    • ❓Technical FAQs
    • ❓Token and Ecosystem FAQs
Powered by GitBook
On this page
  • Authentication
  • Endpoints
  1. Inference API

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:

  1. Hold $VIRAL in your connected wallet

  2. Include your wallet address in the authentication header

  3. 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"
}
PreviousDemonstration DataNextGeneral FAQs

Last updated 4 months ago

🤖