# Feedi API Read-only REST API for Feedi feedback. Base URL: https://api.feedi.dev Auth: Authorization: Bearer feedi_{eu|us}_sk_... (Indie plan; create a key at /account/api-keys) OpenAPI: https://api.feedi.dev/v1/openapi.json ## Endpoints - GET /v1/feedback?status=&app=&project=&tag=&limit=&cursor= — list feedback, newest first; paginate with next_cursor - GET /v1/feedback/{id} — one feedback item with metadata and delivery status - GET /v1/projects — list projects - GET /v1/apps?project= — list apps (optionally scoped to a project) - GET /v1/tags?app=&project= — distinct tags with counts ## Notes - Pagination: pass the prior response's `next_cursor` as `cursor`. Max limit is 100. - Rate limits: per-key per-minute and per-day; responses include X-RateLimit-* headers and 429 on exceed. - IDs: feedback `id` is the public short id; `app.id`/`project.id` are usable as filters.