Demo Dashboard

Demo Mode

API Keys

Manage API keys for programmatic feedback submission via webhook.

View documentation
Not Configured

Create New API Key

Existing Keys

No API keys yet. Create one above to get started.

Quick Start

Submit feedback programmatically by sending a POST request to the webhook endpoint with your API key.

Endpoint

POST https://feedqip.com/api/v1/feedback

Headers

Content-Type: application/json
X-API-Key: lc_your_api_key_here

Request Body

{
  "message": "Your feedback message here",
  "metadata": {
    "email": "[email protected]",
    "page_url": "/pricing",
    "user_agent": "MyApp/1.0"
  }
}

Example (curl)

curl -X POST https://feedqip.com/api/v1/feedback \
  -H "Content-Type: application/json" \
  -H "X-API-Key: lc_your_api_key_here" \
  -d '{"message": "Great product!", "metadata": {"source": "api"}}'

Response Codes

Code Meaning
201 Feedback created successfully
401 Missing or invalid API key
422 Validation error (missing message, too long, etc.)
429 Rate limit exceeded (60 requests/minute)
Feedback