---
title: "Get Feedback By Id V1"
method: GET
path: "/v1/feedback/{feedback_id}"
tags: ["v1", "Feedback"]
---

# Get Feedback By Id V1

`GET /v1/feedback/{feedback_id}`

Retrieve feedback by ID.
    
    This endpoint allows developers to fetch feedback details by feedback ID.
    Only the user who created the feedback or users with appropriate permissions can access it.
    
    **Authentication Required**:
    One of the following authentication methods must be used:
    - Bearer token in `Authorization` header
    - API Key in `X-API-Key` header
    - Session token in `X-Session-Token` header
    
    **Required Headers**:
    - X-Client-Type: (e.g., 'papr_plugin', 'browser_extension')

## Path parameters

- `feedback_id` string, required

## Response `200`

Feedback retrieved successfully

- FeedbackResponse — Response model for feedback submission
  - `code` integer, required — HTTP status code
  - `status` string, required — 'success' or 'error'
  - `feedback_id` string, nullable — Unique feedback ID
  - `message` string, required — Human-readable message
  - `error` string, nullable — Error message if status is 'error'
  - `details` object, nullable — Additional error details

## Other responses

- `401` — Unauthorized
- `404` — Feedback not found
- `422` — Validation Error
- `500` — Internal server error

---

[API](https://skmtc.net/papr-ai/apis/papr-memory-api.md) · [All operations](https://skmtc.net/papr-ai/apis/papr-memory-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/papr-ai/papr-memory-api/versions/b553be9aad37/schema)
