Fetch a recent corpus analysis result
curl --request GET \
--url https://mcp.echozero.app/api/v1/developers/agents/signal-corpus/analysis/{analysisId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://mcp.echozero.app/api/v1/developers/agents/signal-corpus/analysis/{analysisId}"
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/v1/developers/agents/signal-corpus/analysis/{analysisId}', 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/v1/developers/agents/signal-corpus/analysis/{analysisId}', 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/signal-corpus/analysis/{analysisId}"
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": {
"analysisId": "<string>",
"messageCount": 123,
"rawLineCount": 123,
"delimiterUsed": "newline",
"summary": "<string>",
"confidence": "low",
"suggestedRule": {
"buyKeywords": [
"<string>"
],
"sellKeywords": [
"<string>"
],
"longKeywords": [
"<string>"
],
"shortKeywords": [
"<string>"
],
"tpKeywords": [
"<string>"
],
"slKeywords": [
"<string>"
],
"leverageKeywords": [
"<string>"
],
"tokenPatterns": [
"<string>"
],
"strategyPrefix": "<string>",
"cancelKeywords": [
"<string>"
],
"breakevenKeywords": [
"<string>"
],
"partialCloseKeywords": [
"<string>"
],
"breakoutAboveKeywords": [
"<string>"
],
"breakoutBelowKeywords": [
"<string>"
],
"entryZoneKeywords": [
"<string>"
]
},
"coverage": {
"keywordGateHitPct": 123,
"unmatchedLineIndexes": [
123
]
},
"riskFlags": [
{
"keyword": "<string>",
"reason": "<string>"
}
],
"parsePreview": [
{
"lineIndex": 123,
"text": "<string>",
"ingressHit": true,
"matched": true,
"token": "<string>",
"intent": "<string>",
"summary": "<string>"
}
],
"keywordStats": {},
"corpusMessages": [
{
"lineIndex": 123,
"text": "<string>"
}
],
"diff": [
{
"bucket": "<string>",
"added": [
"<string>"
],
"unchanged": [
"<string>"
]
}
],
"warnings": [
"<string>"
],
"strategyPrefixRecommendation": {
"value": "<string>",
"apply": true,
"reason": "<string>"
},
"expiresAt": "<string>",
"model": "<string>"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}Developer signal corpus
Fetch a recent corpus analysis result
Returns ephemeral analysis stored in Redis (default 7-day TTL). Developer auth only.
GET
/
api
/
v1
/
developers
/
agents
/
signal-corpus
/
analysis
/
{analysisId}
Fetch a recent corpus analysis result
curl --request GET \
--url https://mcp.echozero.app/api/v1/developers/agents/signal-corpus/analysis/{analysisId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://mcp.echozero.app/api/v1/developers/agents/signal-corpus/analysis/{analysisId}"
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/v1/developers/agents/signal-corpus/analysis/{analysisId}', 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/v1/developers/agents/signal-corpus/analysis/{analysisId}', 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/signal-corpus/analysis/{analysisId}"
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": {
"analysisId": "<string>",
"messageCount": 123,
"rawLineCount": 123,
"delimiterUsed": "newline",
"summary": "<string>",
"confidence": "low",
"suggestedRule": {
"buyKeywords": [
"<string>"
],
"sellKeywords": [
"<string>"
],
"longKeywords": [
"<string>"
],
"shortKeywords": [
"<string>"
],
"tpKeywords": [
"<string>"
],
"slKeywords": [
"<string>"
],
"leverageKeywords": [
"<string>"
],
"tokenPatterns": [
"<string>"
],
"strategyPrefix": "<string>",
"cancelKeywords": [
"<string>"
],
"breakevenKeywords": [
"<string>"
],
"partialCloseKeywords": [
"<string>"
],
"breakoutAboveKeywords": [
"<string>"
],
"breakoutBelowKeywords": [
"<string>"
],
"entryZoneKeywords": [
"<string>"
]
},
"coverage": {
"keywordGateHitPct": 123,
"unmatchedLineIndexes": [
123
]
},
"riskFlags": [
{
"keyword": "<string>",
"reason": "<string>"
}
],
"parsePreview": [
{
"lineIndex": 123,
"text": "<string>",
"ingressHit": true,
"matched": true,
"token": "<string>",
"intent": "<string>",
"summary": "<string>"
}
],
"keywordStats": {},
"corpusMessages": [
{
"lineIndex": 123,
"text": "<string>"
}
],
"diff": [
{
"bucket": "<string>",
"added": [
"<string>"
],
"unchanged": [
"<string>"
]
}
],
"warnings": [
"<string>"
],
"strategyPrefixRecommendation": {
"value": "<string>",
"apply": true,
"reason": "<string>"
},
"expiresAt": "<string>",
"model": "<string>"
}
}{
"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