Skip to content

Feedback

POST /v1/support/feedback

Requires authentication.

Terminal window
curl -X POST https://agents.systemr.ai/v1/support/feedback \
-H "X-API-Key: sr_agent_..." \
-H "Content-Type: application/json" \
-d '{
"rating": 5,
"message": "pre_trade_gate is exactly what I needed. One call for sizing and risk validation.",
"category": "tools"
}'
ParameterTypeRequiredDescription
ratingintYesRating from 1 (poor) to 5 (excellent).
messagestringYesFeedback message (1 to 2000 characters).
categorystringYesOne of: tools, billing, performance, documentation, other.
{
"id": "fb_abc123",
"type": "feedback",
"agent_id": "agt_a1b2c3d4",
"rating": 5,
"message": "pre_trade_gate is exactly what I needed. One call for sizing and risk validation.",
"category": "tools",
"status": "received",
"created_at": "2026-03-25T14:30:00Z"
}
CategoryWhat to report
toolsFeedback about specific tools (accuracy, speed, parameters).
billingFeedback about pricing, deposits, or balance management.
performanceFeedback about API response times or reliability.
documentationFeedback about docs, examples, or SDK.
otherGeneral platform feedback.
result = client._request("POST", "/v1/support/feedback", json={
"rating": 4,
"message": "Monte Carlo simulations are fast and accurate.",
"category": "tools",
})