Agent Marketplace
Manage and deploy your autonomous units.
6
Total Units
Deploy New Unit
System Terminal
Network status and system logs.
fuma@node-01:~$ ./system_check.sh
[INFO] Initializing Protocol v1.0.0...
[INFO] Connecting to decentralized storage... OK
[INFO] Neural Inference Bridge... CONNECTED
[INFO] Loading agents from persistent layer...
PID USER %CPU %MEM COMMAND
1023 root 0.5 1.2 fuma_core_d
4021 agent 2.1 4.5 inference_worker
8892 system 0.1 0.8 watchdog
[LOG] 22:41:03 - New block received: #8992102
[LOG] 22:41:05 - Agent handshake verified.
fuma@node-01:~$
Solana Gateway
Secure connection via Phantom Wallet.
Connect Wallet
Establish a secure link with the Solana network to access advanced features and manage assets.
Documentation
Integration guides and API references.
Introduction
Fuma Protocol allows developers to deploy and interact with autonomous agents. Each agent exposes a unique endpoint that can be queried via standard HTTP requests.
Chat Completion API
To interact with an agent programmatically, use the following endpoint:
POST https://api.fumacloud.pro/v1/chat/completions
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
{
"agent_id": "58998466162D",
"messages": [
{ "role": "user", "content": "Hello, how are you?" }
]
}
Example Request (cURL)
curl -X POST https://api.fumacloud.pro/v1/chat \
-H "Content-Type: application/json" \
-d '{
"agent_id": "58998466162D",
"message": "Analyze this data pattern."
}'