Check the Status of a Feedback Report Sent to RedditAPIs
Read whether a feedback report your account sent was triaged, shipped or declined, and the team's response. Free, no per-call cost, scoped to the sending account.
/feedback/{id}FreeRead the status of a report this account sent with Send Feedback. Free, does not consume credits. The MCP server exposes it as reddit_feedback_get.
Path Parameters
| Parameter | Description |
|---|---|
id | The server id returned by POST /feedback (a UUID). Not a local draft id from the MCP queue. |
Success Response
{
"id": "33333333-3333-4333-8333-333333333333",
"type": "bug",
"title": "GET /api/reddit/comments returns 502 when the post is deleted",
"area": "posts/comments",
"status": "shipped",
"response": "Deleted posts now answer 404 not_found. Live since 2026-09-06.",
"created_at": "2026-09-04T10:14:22.318401+00:00",
"updated_at": "2026-09-06T08:02:11.004512+00:00"
}Field Reference
| Field | Description |
|---|---|
id | The report's server id. |
type | bug, idea or missing_capability, as sent. |
title | The title as sent. |
area | The area as sent, or null. |
status | new (received), triaged (a human has read it), shipped (the fix or feature is live) or declined. |
response | The team's note to you, or null until one is written. |
created_at | When the report was received. |
updated_at | Moves only when the team acts on the report (a status or response change), so a poll can tell "we looked" from "we did not". |
Example
curl -H "Authorization: Bearer $TOKEN" \
"https://api.redditapis.com/feedback/33333333-3333-4333-8333-333333333333"const id = "33333333-3333-4333-8333-333333333333";
const response = await fetch(`https://api.redditapis.com/feedback/${id}`, {
headers: { Authorization: "Bearer TOKEN" },
});
const report = await response.json();import requests
report_id = "33333333-3333-4333-8333-333333333333"
response = requests.get(
f"https://api.redditapis.com/feedback/{report_id}",
headers={"Authorization": "Bearer TOKEN"},
)
report = response.json()Errors
| Status | Meaning |
|---|---|
401 | Missing or invalid Bearer token |
404 | { "error": "not_found" }. No report with that id on this account. Another account's report, a deleted report and a malformed id all answer 404 alike. |
429 | Rate limit exceeded (more than 10 requests per minute on one key) |
500 | Unexpected server error |
Independent third-party API for developers and researchers. Not affiliated with, endorsed by, or sponsored by Reddit, Inc.
Send Feedback
Report a bug, an idea or a missing capability to the RedditAPIs team over one free POST. Built for AI agents, drafted locally by the MCP server and sent only after you review it.
Live Monitoring
Register a filter, and every new matching Reddit post or comment is pushed to your endpoint as a signed HTTPS POST.
