Skip to main content
POST
/
v1
/
public
/
feedbacks.info
curl --location --request POST 'https://api.yourapp.com/v1/public/feedbacks.info' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
  "feedbackId": "feedback-uuid"
}'
{
  "data": {
    "id": "feedback-uuid",
    "urlId": "abc123def456",
    "url": "/add-dark-mode-support-abc123def456",
    "title": "Add dark mode support",
    "text": "It would be great to have a dark mode option for the dashboard.",
    "status": "planned",
    "priority": "high",
    "boardId": "board-uuid",
    "board": {
      "id": "board-uuid",
      "name": "Feature Requests",
      "slug": "feature-requests"
    },
    "creatorId": "subscriber-uuid",
    "subscriber": {
      "id": "subscriber-uuid",
      "name": "John Doe",
      "email": "john@example.com",
      "avatarUrl": "https://example.com/avatar.jpg"
    },
    "teamId": "team-uuid",
    "feedbackVotesCount": 42,
    "feedbackCommentsCount": 12,
    "tags": [
      {
        "id": "tag-uuid",
        "name": "UI/UX",
        "color": "#3B82F6"
      }
    ],
    "meta": {},
    "publishedAt": "2024-01-15T10:30:00Z",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-20T14:22:00Z",
    "archivedAt": null
  }
}

Authentication

Authorization: Bearer YOUR_API_KEY

Request Body

feedbackId
string
The feedback ID to get information for (UUID)
urlId
string
Alternative: The feedback URL ID (short identifier)
Note: Provide either feedbackId or urlId, not both.

Response

data
object
Feedback object with complete details
curl --location --request POST 'https://api.yourapp.com/v1/public/feedbacks.info' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
  "feedbackId": "feedback-uuid"
}'
{
  "data": {
    "id": "feedback-uuid",
    "urlId": "abc123def456",
    "url": "/add-dark-mode-support-abc123def456",
    "title": "Add dark mode support",
    "text": "It would be great to have a dark mode option for the dashboard.",
    "status": "planned",
    "priority": "high",
    "boardId": "board-uuid",
    "board": {
      "id": "board-uuid",
      "name": "Feature Requests",
      "slug": "feature-requests"
    },
    "creatorId": "subscriber-uuid",
    "subscriber": {
      "id": "subscriber-uuid",
      "name": "John Doe",
      "email": "john@example.com",
      "avatarUrl": "https://example.com/avatar.jpg"
    },
    "teamId": "team-uuid",
    "feedbackVotesCount": 42,
    "feedbackCommentsCount": 12,
    "tags": [
      {
        "id": "tag-uuid",
        "name": "UI/UX",
        "color": "#3B82F6"
      }
    ],
    "meta": {},
    "publishedAt": "2024-01-15T10:30:00Z",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-20T14:22:00Z",
    "archivedAt": null
  }
}

Use Cases

  • Feedback Detail Page: Display complete feedback information
  • Permalink Access: Access feedback by URL ID from permalinks
  • Widget Display: Show feedback details in embedded widgets

Notes

  • Accepts either feedbackId (UUID) or urlId (short identifier)
  • Returns 404 if feedback doesn’t exist or is not published
  • Includes related objects (board, subscriber, tags)
  • Vote and comment counts are real-time