> ## Documentation Index
> Fetch the complete documentation index at: https://docs.humancheck.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit Feedback

> Submit feedback on a review or decision

## Endpoint

```
POST /reviews/{review_id}/feedback
```

## Request Body

```json theme={null}
{
  "rating": 5,
  "comment": "Quick and clear decision, thank you!"
}
```

## Response

```json theme={null}
{
  "id": 1,
  "review_id": 1,
  "rating": 5,
  "comment": "Quick and clear decision, thank you!",
  "created_at": "2024-01-01T12:00:00Z"
}
```

## Example

```python theme={null}
import httpx

async with httpx.AsyncClient() as client:
    response = await client.post(
        "https://api.humancheck.dev/reviews",
        headers={
            "Authorization": "Bearer your-api-key-here",
            "Content-Type": "application/json"
        },
        json={
            "rating": 5,
            "comment": "Great decision!"
        }
    )
    feedback = response.json()
```
