Get a trade signal by signalId
curl --request GET \
--url https://mcp.echozero.app/api/developers/signals/{signalId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://mcp.echozero.app/api/developers/signals/{signalId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://mcp.echozero.app/api/developers/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://mcp.echozero.app/api/developers/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mcp.echozero.app/api/developers/signals/{signalId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": "<string>",
"signalId": "<string>",
"developerAgentId": "<string>",
"developerId": "<string>",
"signal": {
"action": "<string>",
"tokenAddress": "<string>",
"amount": 123,
"tokenName": "<string>",
"tokenSymbol": "<string>",
"urgency": "<string>",
"metadata": {},
"reasoning": "<string>",
"context": {},
"confidence": 0.5,
"executionPlan": {}
},
"livePriceSeeded": true,
"status": "<string>",
"webhookDelivered": true,
"createdAt": "2023-11-07T05:31:56Z",
"subscriberId": "<string>",
"validationResult": {
"passed": true,
"validatedAt": "2023-11-07T05:31:56Z",
"reason": "<string>"
},
"executionResult": {
"success": true,
"txHash": "<string>",
"executedAmountUsd": 123,
"errorMessage": "<string>",
"executedAt": "2023-11-07T05:31:56Z"
},
"webhookDeliveredAt": "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"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}Trade Signals
Get a trade signal by signalId
Returns a single trade signal record. Must be owned by the authenticated developer.
GET
/
api
/
developers
/
signals
/
{signalId}
Get a trade signal by signalId
curl --request GET \
--url https://mcp.echozero.app/api/developers/signals/{signalId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://mcp.echozero.app/api/developers/signals/{signalId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://mcp.echozero.app/api/developers/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://mcp.echozero.app/api/developers/signals/{signalId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mcp.echozero.app/api/developers/signals/{signalId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": "<string>",
"signalId": "<string>",
"developerAgentId": "<string>",
"developerId": "<string>",
"signal": {
"action": "<string>",
"tokenAddress": "<string>",
"amount": 123,
"tokenName": "<string>",
"tokenSymbol": "<string>",
"urgency": "<string>",
"metadata": {},
"reasoning": "<string>",
"context": {},
"confidence": 0.5,
"executionPlan": {}
},
"livePriceSeeded": true,
"status": "<string>",
"webhookDelivered": true,
"createdAt": "2023-11-07T05:31:56Z",
"subscriberId": "<string>",
"validationResult": {
"passed": true,
"validatedAt": "2023-11-07T05:31:56Z",
"reason": "<string>"
},
"executionResult": {
"success": true,
"txHash": "<string>",
"executedAmountUsd": 123,
"errorMessage": "<string>",
"executedAt": "2023-11-07T05:31:56Z"
},
"webhookDeliveredAt": "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"
}
}{
"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
HMAC-SHA256 signature: HMAC-SHA256(secretKey, timestamp + METHOD + path + body). Required for API-key authenticated requests (JWT/OAuth session auth is exempt).
Request timestamp in epoch milliseconds. Required with x-signature for API-key auth. Rejected if drift exceeds 5 minutes.
Path Parameters
⌘I