Feedback
Every feature request ever submitted (public, unauthenticated)
/v1/feedbackThe transparent counterpart to charging for submission: titles, statuses, and dates are public so anyone can see what has been asked and what came of it. Bodies and requesters are not published.
Parameters
limitin query,integer
Responses
requestsFeatureRequest[](required)
Example
curl -X GET https://api.cofferline.com/v1/feedback
Submit a feature request ($1, anti-spam)
/v1/feedbackCosts $1, charged to the prepaid balance when funded, otherwise answered with standard x402 payment requirements — retry with the signed authorization in X-PAYMENT. The charge exists purely as spam friction; the resulting request appears in the public list at GET /v1/feedback. On the x402 path the fee settles on-chain first; a durable pending-settlement record (carrying this request's body) exists before anything is broadcast, so an interrupted submission converges on exactly one credit, one fee debit and one recorded request (202 = outcome pending, reconciled from chain truth).
Request body
titlestring(required)bodystring(required)
Responses
idstring(required)statusstring(required)charged_usdstring(required)paid_refstring(required)
settlement_status"pending"(required)noncestring(required)value_usdstring(required)remediationstring(required)
Example
curl -X POST https://api.cofferline.com/v1/feedback \
-H "authorization: Bearer $TOKEN" \
-H "content-type: application/json" \
-d '{"title":"…","body":"…"}'