Last updated 2026-04-30
Feedback
Paywalled via x402. See x402 payment flow.
GET /v1/feedback
Global feedback feed across every indexed agent.
curl -i "https://erc-8004.quicknode.com/v1/feedback?network=base-mainnet&per_page=20"
Query params
| Param | Type | Notes |
|---|---|---|
network |
string | Network slug filter. Optional. |
include_testnets |
bool | Default false. |
include_revoked |
bool | Default false. Revoked feedback is excluded from reputation but still indexed. |
page |
int | 1-indexed page number. |
per_page |
int | Page size. |
Response
{
"data": [
{
"id": 12345,
"agent": {
"agent_id": 42,
"network": { "slug": "base-mainnet", "name": "Base", "chain_id": 8453 }
},
"client_address": "0x…",
"tag1": "trust",
"tag2": "responsive",
"value": 95,
"feedback_data": "...",
"feedback_data_hash_verified": true,
"revoked": false,
"block_number": 41700000,
"transaction_hash": "0x…",
"submitted_at": "2026-04-15T08:30:00Z"
}
],
"meta": { "page": 1, "per_page": 50, "total_count": 9876 }
}
feedback_data_hash_verified: true means the content fetched from feedback_data_uri matched the on-chain hash. False (or null) means the off-chain payload was missing, modified, or unfetchable. The verification badge in the Explorer UI reads this field directly.
The same data is available per-agent via GET /v1/agents/:agent_id/feedback.