Developer agent detail
curl --request GET \
--url https://mcp.echozero.app/api/v1/developer-agents/{id}import requests
url = "https://mcp.echozero.app/api/v1/developer-agents/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://mcp.echozero.app/api/v1/developer-agents/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://mcp.echozero.app/api/v1/developer-agents/{id}', 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/developer-agents/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": "<string>",
"developerId": "<string>",
"name": "<string>",
"pricingModel": "subscription",
"betaStatus": "<string>",
"riskLevel": "low",
"performanceStats": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"strategyDescription": "<string>",
"avatarUrl": "<string>",
"imageUrl": "<string>",
"tags": [
"<string>"
],
"monthlyPrice": 123,
"successFeePercent": 123,
"betaStartDate": "2023-11-07T05:31:56Z",
"maxBetaUsers": 123,
"stats": {
"totalProfitUsd": 123,
"roi": 123,
"winRate": 123,
"totalTrades": 123,
"performanceScore": 123
},
"pnl": {
"totalProfitUsd": 123,
"roi": 123,
"avgProfitPerTrade": 123,
"maxDrawdown": 123
},
"tradeStats": {
"totalTrades": 123,
"wins": 123,
"losses": 123,
"winRate": 123,
"category": "<string>"
},
"risk": {
"level": "low",
"botCount": 123
},
"followers": 123,
"subscriberCount": 123,
"isSubscribed": true,
"activeBotCount": 123,
"totalBotCount": 123,
"featured": true,
"featuredRank": 123,
"latestReview": {
"id": "<string>",
"status": "<string>",
"reviewedAt": "2023-11-07T05:31:56Z",
"notes": "<string>",
"safetyScore": 123
},
"membershipGated": true,
"externalSignupUrl": "<string>"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}Developer Agents (Marketplace)
Developer agent detail
Public. Includes subscriber count and latest review when available. Accepts optional auth to enrich isSubscribed.
GET
/
api
/
v1
/
developer-agents
/
{id}
Developer agent detail
curl --request GET \
--url https://mcp.echozero.app/api/v1/developer-agents/{id}import requests
url = "https://mcp.echozero.app/api/v1/developer-agents/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://mcp.echozero.app/api/v1/developer-agents/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://mcp.echozero.app/api/v1/developer-agents/{id}', 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/developer-agents/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": "<string>",
"developerId": "<string>",
"name": "<string>",
"pricingModel": "subscription",
"betaStatus": "<string>",
"riskLevel": "low",
"performanceStats": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"strategyDescription": "<string>",
"avatarUrl": "<string>",
"imageUrl": "<string>",
"tags": [
"<string>"
],
"monthlyPrice": 123,
"successFeePercent": 123,
"betaStartDate": "2023-11-07T05:31:56Z",
"maxBetaUsers": 123,
"stats": {
"totalProfitUsd": 123,
"roi": 123,
"winRate": 123,
"totalTrades": 123,
"performanceScore": 123
},
"pnl": {
"totalProfitUsd": 123,
"roi": 123,
"avgProfitPerTrade": 123,
"maxDrawdown": 123
},
"tradeStats": {
"totalTrades": 123,
"wins": 123,
"losses": 123,
"winRate": 123,
"category": "<string>"
},
"risk": {
"level": "low",
"botCount": 123
},
"followers": 123,
"subscriberCount": 123,
"isSubscribed": true,
"activeBotCount": 123,
"totalBotCount": 123,
"featured": true,
"featuredRank": 123,
"latestReview": {
"id": "<string>",
"status": "<string>",
"reviewedAt": "2023-11-07T05:31:56Z",
"notes": "<string>",
"safetyScore": 123
},
"membershipGated": true,
"externalSignupUrl": "<string>"
}
}{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}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