Lumifeed Docs
API Reference

API Reference

Full reference for the Lumifeed REST API.

API Reference

The Lumifeed API is a REST API that returns JSON. It powers the widget, dashboard, and any server-side integrations you build.

Base URL

https://api.lumifeed.app/v1

Authentication

All API requests require authentication. See Authentication.

Response format

All responses follow a consistent shape:

{
  "data": { ... },
  "error": null,
  "meta": {
    "page": 1,
    "limit": 20,
    "total": 143
  }
}

On error:

{
  "data": null,
  "error": "Unauthorized",
  "meta": {}
}

Endpoints

ResourceDescription
FeedbackSubmit and list feedback
AuthenticationAPI key setup
Rate limitsRequest limits per plan

On this page