Simulate an agent signal message
curl --request POST \
--url https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-signature: <x-signature>' \
--header 'x-timestamp: <x-timestamp>' \
--data '
{
"message": "Buy SOL at $145, TP $160, SL $138"
}
'import requests
url = "https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate"
payload = { "message": "Buy SOL at $145, TP $160, SL $138" }
headers = {
"x-signature": "<x-signature>",
"x-timestamp": "<x-timestamp>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({message: 'Buy SOL at $145, TP $160, SL $138'})
};
fetch('https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({message: 'Buy SOL at $145, TP $160, SL $138'})
};
fetch('https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate"
payload := strings.NewReader("{\n \"message\": \"Buy SOL at $145, TP $160, SL $138\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-signature", "<x-signature>")
req.Header.Add("x-timestamp", "<x-timestamp>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": "<string>",
"agentId": "<string>",
"agentName": "<string>",
"message": "<string>",
"status": "simulated",
"parsed": {
"matched": true,
"action": "<string>",
"intent": "<string>",
"token": "<string>",
"tokenUnresolved": true,
"entryPrice": "<string>",
"takeProfit": "<string>",
"stopLoss": "<string>",
"takeProfitLevels": [
{
"index": 123,
"price": "<string>",
"allocationPercent": 123
}
],
"leverage": 123,
"partialPercent": 123,
"ruleMatched": "<string>",
"tradeTriggered": "<string>",
"confidence": 123
},
"createdAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}Sandbox
Simulate an agent signal message
Dry-run sandbox parser for raw signal text. Uses the agent signal detection rule when configured, and stores the simulation in ephemeral sandbox history for the selected agent.
POST
/
api
/
sandbox
/
agents
/
{id}
/
signals
/
simulate
Simulate an agent signal message
curl --request POST \
--url https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-signature: <x-signature>' \
--header 'x-timestamp: <x-timestamp>' \
--data '
{
"message": "Buy SOL at $145, TP $160, SL $138"
}
'import requests
url = "https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate"
payload = { "message": "Buy SOL at $145, TP $160, SL $138" }
headers = {
"x-signature": "<x-signature>",
"x-timestamp": "<x-timestamp>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({message: 'Buy SOL at $145, TP $160, SL $138'})
};
fetch('https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({message: 'Buy SOL at $145, TP $160, SL $138'})
};
fetch('https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://mcp.echozero.app/api/sandbox/agents/{id}/signals/simulate"
payload := strings.NewReader("{\n \"message\": \"Buy SOL at $145, TP $160, SL $138\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-signature", "<x-signature>")
req.Header.Add("x-timestamp", "<x-timestamp>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": "<string>",
"agentId": "<string>",
"agentName": "<string>",
"message": "<string>",
"status": "simulated",
"parsed": {
"matched": true,
"action": "<string>",
"intent": "<string>",
"token": "<string>",
"tokenUnresolved": true,
"entryPrice": "<string>",
"takeProfit": "<string>",
"stopLoss": "<string>",
"takeProfitLevels": [
{
"index": 123,
"price": "<string>",
"allocationPercent": 123
}
],
"leverage": 123,
"partialPercent": 123,
"ruleMatched": "<string>",
"tradeTriggered": "<string>",
"confidence": 123
},
"createdAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}Authorizations
bearer-jwtapi-key
User JWT access token issued by POST /api/auth/verify or POST /api/auth/social/verify. Routes that accept both auth modes declare api-key and bearer-jwt security schemes.
Headers
Required for API-key authenticated requests. HMAC-SHA256(secretKey, timestamp + METHOD + path + body) as lowercase hex. Omit only for JWT/OAuth session tokens or public routes.
Required with x-signature. Epoch milliseconds; rejected if drift exceeds 5 minutes. Omit only for JWT/OAuth session tokens or public routes.
Path Parameters
Body
application/json
Raw signal message to parse and simulate
Example:
"Buy SOL at $145, TP $160, SL $138"