Feedback API (API key)
Integrations use a single app API key. There is no separate login or session token for these endpoints—pass your key on every request.
Base URL
https://api.feedjar.inAuthentication
Send your app API key (values start with fjr_) on each request:
X-FeedJar-Key: fjr_...Keys are created in the dashboard when you add an app. The full value is shown only once—store it securely.
For older integrations the server also accepts X-Feedbox-Key (deprecated); prefer X-FeedJar-Key.
Submit feedback
POST /ingest/feedback
Content-Type: application/json
{
"type": "feedback",
"message": "Love the new flow!",
"email": "user@example.com",
"rating": 5,
"metadata": { "appVersion": "1.4.2" }
}type is one of feedback, feature, support, crash. email, rating, and metadata are optional.
Response:
{ "ok": true, "id": "...", "createdAt": "..." }List feedback
GET /ingest/feedback
Returns feedback for the app linked to your API key (newest first).
Optional query: limit (default 50, max 200), type (same values as submit).
Response:
{
"feedback": [
{
"id": "...",
"type": "feedback",
"message": "...",
"email": "...",
"rating": null,
"metadata": {},
"createdAt": "..."
}
]
}SDK configuration
SDKs embed the production API URL — you only pass your fjr_… API key. See iOS, Android, Web, React Native, and Flutter guides.