API Documentation

Integrate feedto.me with your applications using our REST API

Authentication

All API requests require an API key. Include it in the header:

curl -H "x-api-key: YOUR_API_KEY" \
  https://feedto.me/api/v1/products/your-product/feedback

Find your API key in Dashboard → Settings → API Keys

Base URL

https://feedto.me/api/v1

Endpoints

GET/api/v1/products/{slug}/feedback

List all feedback posts

Query Parameters

boardstringFilter by board slug
statusstringFilter by status (open, planned, in_progress, completed, closed)
limitnumberMax results (default 50, max 100)
offsetnumberPagination offset
POST/api/v1/products/{slug}/feedback

Create a new feedback post

Request Body

board_idstringBoard ID (required)
titlestringPost title (required)
contentstringPost content/body
descriptionstringLegacy alias of content
author_emailstringAuthor email
author_namestringAuthor name
GET/api/v1/products/{slug}/roadmap

Get roadmap items

Query Parameters

statusstringFilter by status (planned, in_progress, completed)
public_onlybooleanOnly public items (default true)
GET/api/v1/products/{slug}/changelog

Get changelog entries

Query Parameters

limitnumberMax results (default 20, max 50)
offsetnumberPagination offset

Response Format

All responses are JSON with this structure:

{
  "data": [...],           // Response data
  "pagination": {          // For list endpoints
    "limit": 50,
    "offset": 0,
    "total": 123
  },
  "error": "string"        // Only on error
}

Rate Limits

Free100 requests/hour
Starter (€19/mo)500 requests/hour
Pro (€49/mo)2,000 requests/hour
Business (€99/mo)Unlimited

We use cookies to improve your experience and analyze site usage. You can accept or reject non-essential cookies. Learn more