# Kronos Market Intelligence — Feedback Submission by CoinOpAI

> Kronos Market Intelligence — Feedback Submission by CoinOpAI is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Submits user feedback, bug reports, symbol requests, or integration suggestions to the Kronos Market Intelligence service via x402 micropayment on Base.

## Facts

- Endpoint: GET https://x402.coinopai.com/api/feedback
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-market-intelligence-feedback-submission-by-coinopai-081e213a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vwpu3l_N5xBDVLPu5px-r

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability kronos-market-intelligence-feedback-submission-by-coinopai-081e213a
```

Example prompt: Send a bug report to Kronos Market Intelligence saying 'The BTC forecast range appears stale — not updating after 6pm UTC' and tag it as type 'bug' for the /api/kronos endpoint.

## When to prefer this

Use this endpoint when you want to submit structured feedback, bug reports, feature requests, or symbol suggestions directly to the Kronos Market Intelligence service. Prefer this over generic contact forms when you need a receipt (feedback_id) confirming your submission and are operating in a micropayment-enabled x402 workflow on Base.

## Known failure modes

- Missing required 'message' query parameter returns validation error
- Payment not fulfilled via x402 results in 402 Payment Required response
- Message exceeds 2000 character limit returns schema validation error
- Invalid 'type' enum value (not one of: general, symbol_request, logic_suggestion, bug, integration, hello) causes rejection
- Network or Base chain payment processing failure

## How this service works

Send paid feedback, symbol requests, logic suggestions, bug reports, or a quick hello to the Kronos operator. Write-only inbox; no public read endpoint.

## Output

Returns a JSON object with a status field (e.g. 'received') and a unique feedback_id UUID confirming the feedback was logged in the Kronos system.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "message"
     ],
     "properties": {
      "type": {
       "enum": [
        "general",
        "symbol_request",
        "logic_suggestion",
        "bug",
        "integration",
        "hello"
       ],
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "contact": {
       "type": "string"
      },
      "message": {
       "type": "string",
       "maxLength": 2000
      },
      "endpoint": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "status": {
       "type": "string"
      },
      "feedback_id": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "received",
  "feedback_id": "uuid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-market-intelligence-feedback-submission-by-coinopai-081e213a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
