# crypto.forgemesh.io Feedback Inbox

> crypto.forgemesh.io Feedback Inbox is a paid API for AI agents from crypto.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Submits a message (symbol request, bug report, or logic suggestion) to the operator's write-only inbox and returns a feedback_id confirming receipt.

## Facts

- Endpoint: GET https://crypto.forgemesh.io/api/feedback
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-forgemesh-io-feedback-inbox-8c6e6440
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vg7BXHG_Fdzi2C0yUkZw5

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 crypto-forgemesh-io-feedback-inbox-8c6e6440
```

Example prompt: Send a symbol request to the forgemesh team asking them to add DOGE to their signal coverage — my message is 'Please add DOGE to the top_k signal list, it has high retail interest' and you can include my contact as user@example.com.

## When to prefer this

Use this endpoint when you need to programmatically send operator feedback to the forgemesh.io team — such as requesting a new symbol, reporting a bug in a signal or endpoint, or suggesting a logic improvement. It is the only write channel to the forgemesh operator and is not a general messaging or notification service.

## Known failure modes

- Missing required 'message' query param returns validation error
- Message exceeds 2000 character limit causes rejection
- Invalid 'type' enum value (not one of general/symbol_request/logic_suggestion/bug/integration/hello) causes error
- Network or payment failure prevents delivery, no feedback_id returned
- Payment of 0.005 USDC not provided or declined returns 402

## How this service works

Delivers your message (symbol request, bug report, or logic suggestion) to the operator's write-only inbox and returns a feedback_id confirming receipt.

## Output

Returns a JSON object with a status string (e.g. 'received') and a unique feedback_id string confirming the message was successfully delivered to the operator's write-only inbox.

## 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/crypto-forgemesh-io-feedback-inbox-8c6e6440/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.forgemesh.io](https://www.zero.xyz/host/crypto.forgemesh.io/llms.txt)
