FeedJar

Getting started

This guide takes you from zero to your first feedback in about 5 minutes.

1. Create your account

Sign up at /signup. Free for your first project.

2. Create a project

From your dashboard, click New project. A project is a product (e.g. "Acme App"). It can host multiple apps across platforms.

3. Add an app

Inside a project, click Add app. Pick the platform (iOS, Android, Web, RN, or Flutter) and give it a name.

4. Generate an API key

Open the app and click Generate key. The full key is shown only once — copy it immediately.

5. Send your first feedback

Send a quick test using cURL (replace the key):

curl -X POST "https://api.feedjar.in/ingest/feedback" \
  -H "X-FeedJar-Key: fjr_..." \
  -H "Content-Type: application/json" \
  -d '{ "type": "feedback", "message": "Hello from cURL", "email": "me@example.com" }'

To fetch recent items for the same app: GET https://api.feedjar.in/ingest/feedback with the same X-FeedJar-Key header. Details: Feedback API.

Or use an SDK for a built-in UI: iOS, Android, or Web, React Native, or Flutter.

6. View it on the dashboard

Open the dashboard — your feedback appears in real time, filterable by project, app, and type.

Next steps