Developer payout history
curl --request GET \
--url https://mcp.echozero.app/api/v1/developers/payouts \
--header 'Authorization: Bearer <token>'import requests
url = "https://mcp.echozero.app/api/v1/developers/payouts"
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/payouts', 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/payouts', 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/payouts"
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": {
"items": [
{
"id": "<string>",
"developerId": "<string>",
"developerAgentId": "<string>",
"periodIsoYear": 123,
"periodIsoWeek": 123,
"periodLabel": "<string>",
"periodStartUtc": "2023-11-07T05:31:56Z",
"periodEndUtc": "2023-11-07T05:31:56Z",
"cumulativeFeesEarnedUsdAtClose": 123,
"grossRevenue": 123,
"platformFee": 123,
"netPayout": 123,
"developerRevenueSharePercent": 123,
"status": "<string>",
"agentName": "<string>",
"agentStatus": "DRAFT",
"payoutAddress": "<string>",
"txHash": "<string>",
"paidAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"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"
}
}Developer
Developer payout history
Paginated weekly payout rows for the authenticated developer (gross, platform fee, net).
GET
/
api
/
v1
/
developers
/
payouts
Developer payout history
curl --request GET \
--url https://mcp.echozero.app/api/v1/developers/payouts \
--header 'Authorization: Bearer <token>'import requests
url = "https://mcp.echozero.app/api/v1/developers/payouts"
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/payouts', 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/payouts', 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/payouts"
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": {
"items": [
{
"id": "<string>",
"developerId": "<string>",
"developerAgentId": "<string>",
"periodIsoYear": 123,
"periodIsoWeek": 123,
"periodLabel": "<string>",
"periodStartUtc": "2023-11-07T05:31:56Z",
"periodEndUtc": "2023-11-07T05:31:56Z",
"cumulativeFeesEarnedUsdAtClose": 123,
"grossRevenue": 123,
"platformFee": 123,
"netPayout": 123,
"developerRevenueSharePercent": 123,
"status": "<string>",
"agentName": "<string>",
"agentStatus": "DRAFT",
"payoutAddress": "<string>",
"txHash": "<string>",
"paidAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"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"
}
}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.
⌘I