Feeedbackr offers two ways to collect feedback:
When you register, you'll receive 3 free credits that allow you to start collecting feedback and test the app without entering a credit card.
https://feeedbackr.com/dashboard
The feedback portal is accessible at https://feeedbackr.com/send-feedback/[appId]
where appId
is your application's unique identifier.
user
: The unique identifier of your customer (customerId)username
: The display name or username of your customerhttps://feeedbackr.com/send-feedback/clrx123abc?user=customer123&username=john_doe
The API gives you complete flexibility to implement your own front-end interface. You can design and build the feedback collection UI that best suits your application's needs.
POST https://feeedbackr.com/api/feedbacks
Content-Type: application/json
x-api-key: YOUR_API_KEY
{
"appId": "string", // Your application ID (CUID format)
"content": "string", // The feedback content
"customerId": "string" // Unique identifier for your customer
}
curl -X POST https://feeedbackr.com/api/feedbacks \
-H "Content-Type: application/json" \
-H "x-api-key: your_api_key" \
-d '{
"appId": "clrx123abc",
"content": "Great application! Would love to see dark mode.",
"customerId": "user123"
}'
Error Code | Description |
---|---|
APP_NOT_FOUND | The specified application ID does not exist |
BAD_REQUEST | The request was malformed or invalid |
FEEDBACK_LIMIT_REACH | The user have reached the limit of feedbacks |
FEEDBACK_NOT_FOUND | The specified feedback does not exist |
INVALID_OR_MISSING_API_KEY | The API key is invalid or was not provided |
MISSING_ATTRIBUTES_IN_PAYLOAD | Required fields are missing in the request body |
NO_CREDITS_LEFT | Your account has no remaining credits |
OPENAI_NO_RESPONSE | Failed to get a response from OpenAI service |
SERVER_ERROR | An internal server error occurred |
UNAUTHORIZED | You are not authorized to perform this action |
USER_NOT_FOUND | The specified user ID does not exist |