Skip to main content
GET
/
api
/
v1
/
developers
/
agents
/
{id}
/
signals
/
ingest-log
Signal ingest audit log (Telegram or Discord channel)
curl --request GET \
  --url https://mcp.echozero.app/api/v1/developers/agents/{id}/signals/ingest-log \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "items": [
      {
        "id": "<string>",
        "developerAgentId": "<string>",
        "externalChannelId": "<string>",
        "rawText": "<string>",
        "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>",
        "tradeSignalId": "<string>",
        "linkedTradeSignalId": "<string>",
        "linkedTrade": {
          "signalId": "<string>",
          "status": "<string>",
          "txHash": "<string>"
        }
      }
    ],
    "pagination": {
      "total": 123,
      "limit": 123,
      "page": 123,
      "totalPages": 123,
      "hasNextPage": true,
      "hasPreviousPage": true
    }
  }
}

Authorizations

Authorization
string
header
required

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

x-signature
string

HMAC-SHA256 signature: HMAC-SHA256(secretKey, timestamp + METHOD + path + body). Optional -- when omitted, HMAC verification is skipped.

x-timestamp
string

Request timestamp in epoch milliseconds. Required when x-signature is provided. Rejected if drift exceeds 5 minutes.

Path Parameters

id
string
required

Query Parameters

outcome
enum<string>

When set, only ingest rows with this outcome are returned (e.g. matched, unmatched).

Available options:
matched,
unmatched,
skipped,
rate_limited,
deduped,
no_rule,
prefix_skip,
error

Response

Ingest audit rows.

success
boolean
required
Example:

true

data
object
required

Endpoint-specific payload