curl --request GET \
--url https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log \
--header 'Authorization: Bearer <token>' \
--header 'x-signature: <x-signature>' \
--header 'x-timestamp: <x-timestamp>'import requests
url = "https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log"
headers = {
"x-signature": "<x-signature>",
"x-timestamp": "<x-timestamp>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>'
}
};
fetch('https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'GET',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>'
}
};
fetch('https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log', 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/v1/developers/agents/{id}/signals/ingest-log"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-signature", "<x-signature>")
req.Header.Add("x-timestamp", "<x-timestamp>")
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": {
"items": [
{
"id": "<string>",
"developerAgentId": "<string>",
"platform": "telegram",
"externalChannelId": "<string>",
"rawText": "<string>",
"outcome": "matched",
"createdAt": "2023-11-07T05:31:56Z",
"externalMessageId": "<string>",
"telegramChatId": "<string>",
"telegramMessageId": 123,
"parsedAction": "<string>",
"parsedIntent": "<string>",
"parsedToken": "<string>",
"entryPrice": "<string>",
"takeProfit": "<string>",
"stopLoss": "<string>",
"parseConfidence": 123,
"parseSource": "<string>",
"parseModel": "<string>",
"parseNote": "<string>",
"parsedSummary": "<string>",
"skipReason": "<string>",
"skipReasons": [
{
"code": "<string>",
"raw": "<string>",
"category": "<string>",
"severity": "failure",
"title": "<string>",
"message": "<string>",
"remediation": "<string>"
}
],
"tradeSignalId": "<string>",
"linkedTradeSignalId": "<string>",
"linkedTrade": {
"signalId": "<string>",
"status": "<string>",
"txHash": "<string>",
"failureReasons": [
{
"code": "<string>",
"raw": "<string>",
"category": "<string>",
"severity": "failure",
"title": "<string>",
"message": "<string>",
"remediation": "<string>"
}
],
"diagnosticReasons": [
{
"code": "<string>",
"raw": "<string>",
"category": "<string>",
"severity": "failure",
"title": "<string>",
"message": "<string>",
"remediation": "<string>"
}
],
"failureReason": "<string>"
}
}
],
"pagination": {
"total": 123,
"limit": 123,
"page": 123,
"totalPages": 123,
"hasNextPage": true,
"hasPreviousPage": true
}
}
}{
"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"
}
}Signal ingest audit log (Telegram, Discord, or inbound webhook)
Paginated rows from signal-ingest-logs for this agent: platform-neutral externalChannelId / externalMessageId (webhook for inbound HTTP POSTs), legacy Telegram fields when present, parse outcome, and optional linked trade summary.
curl --request GET \
--url https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log \
--header 'Authorization: Bearer <token>' \
--header 'x-signature: <x-signature>' \
--header 'x-timestamp: <x-timestamp>'import requests
url = "https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log"
headers = {
"x-signature": "<x-signature>",
"x-timestamp": "<x-timestamp>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>'
}
};
fetch('https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'GET',
headers: {
'x-signature': '<x-signature>',
'x-timestamp': '<x-timestamp>',
Authorization: 'Bearer <token>'
}
};
fetch('https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log', 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/v1/developers/agents/{id}/signals/ingest-log"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-signature", "<x-signature>")
req.Header.Add("x-timestamp", "<x-timestamp>")
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": {
"items": [
{
"id": "<string>",
"developerAgentId": "<string>",
"platform": "telegram",
"externalChannelId": "<string>",
"rawText": "<string>",
"outcome": "matched",
"createdAt": "2023-11-07T05:31:56Z",
"externalMessageId": "<string>",
"telegramChatId": "<string>",
"telegramMessageId": 123,
"parsedAction": "<string>",
"parsedIntent": "<string>",
"parsedToken": "<string>",
"entryPrice": "<string>",
"takeProfit": "<string>",
"stopLoss": "<string>",
"parseConfidence": 123,
"parseSource": "<string>",
"parseModel": "<string>",
"parseNote": "<string>",
"parsedSummary": "<string>",
"skipReason": "<string>",
"skipReasons": [
{
"code": "<string>",
"raw": "<string>",
"category": "<string>",
"severity": "failure",
"title": "<string>",
"message": "<string>",
"remediation": "<string>"
}
],
"tradeSignalId": "<string>",
"linkedTradeSignalId": "<string>",
"linkedTrade": {
"signalId": "<string>",
"status": "<string>",
"txHash": "<string>",
"failureReasons": [
{
"code": "<string>",
"raw": "<string>",
"category": "<string>",
"severity": "failure",
"title": "<string>",
"message": "<string>",
"remediation": "<string>"
}
],
"diagnosticReasons": [
{
"code": "<string>",
"raw": "<string>",
"category": "<string>",
"severity": "failure",
"title": "<string>",
"message": "<string>",
"remediation": "<string>"
}
],
"failureReason": "<string>"
}
}
],
"pagination": {
"total": 123,
"limit": 123,
"page": 123,
"totalPages": 123,
"hasNextPage": true,
"hasPreviousPage": true
}
}
}{
"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
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
Query Parameters
When set, only ingest rows with this outcome are returned (e.g. matched, unmatched).
matched, unmatched, skipped, rate_limited, deduped, no_rule, prefix_skip, error