# Apollo Feedback Submission

> Apollo Feedback Submission is a paid API for AI agents from apolloai.team, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Submit feedback on Apollo data feeds — rate quality, report issues, or suggest improvements for a specific feed.

## Facts

- Endpoint: GET https://apolloai.team/api/feedback
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-feedback-submission-da411c0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__awh-jAJ3fgKsWcdRE5Fy

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 apollo-feedback-submission-da411c0a
```

Example prompt: Send feedback to Apollo about the agent-intel feed — tell them the quality has been good but suggest they improve refresh frequency.

## When to prefer this

Use this endpoint when an agent or user wants to programmatically submit feedback, ratings, or improvement suggestions to Apollo about one of their specific data feeds (e.g. agent-intel, sentiment, pain-points). Prefer this over manual contact when feedback submission should be automated or logged with a tracking ID.

## Known failure modes

- Invalid or unrecognized feed name returns an error
- Missing required method or type fields cause 400-level rejection
- Rate limiting may occur with too many rapid submissions
- Feed filter parameter with unknown value may return empty or error response

## How this service works

Submit feedback — rate feeds, suggest improvements.

## Output

Returns a JSON object with a status field ('accepted') and a unique feedback_id (e.g. 'fb_xyz789') confirming the feedback was recorded.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "feed": {
       "type": "string",
       "description": "Filter by feed name: all, agent-intel, sentiment, etc."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "accepted",
  "feedback_id": "fb_xyz789"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-feedback-submission-da411c0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apolloai.team](https://www.zero.xyz/host/apolloai.team/llms.txt)
