RedditapisRedditapis
Feedback

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.

GET/feedback/{id}Free

Read 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

ParameterDescription
idThe 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

FieldDescription
idThe report's server id.
typebug, idea or missing_capability, as sent.
titleThe title as sent.
areaThe area as sent, or null.
statusnew (received), triaged (a human has read it), shipped (the fix or feature is live) or declined.
responseThe team's note to you, or null until one is written.
created_atWhen the report was received.
updated_atMoves 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

StatusMeaning
401Missing 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.
429Rate limit exceeded (more than 10 requests per minute on one key)
500Unexpected server error

Independent third-party API for developers and researchers. Not affiliated with, endorsed by, or sponsored by Reddit, Inc.

On this page