FeedIndex

API Keys

Generate and manage API keys for authenticating with the FeedIndex API.

API keys let you authenticate requests to the FeedIndex public API. Available on the Pro plan. Only workspace owners can generate and manage keys.

Generating a key

  1. Go to Workspace Settings > API Keys
  2. Give the key a name (e.g., "Production backend")
  3. Click Generate
  4. Copy the key immediately — it is shown only once

The full key is displayed only at creation. FeedIndex stores a SHA-256 hash of the key, so it cannot be recovered. If you lose a key, revoke it and generate a new one.

Key format

API keys use the format:

fi_<64 hex characters>

For example: fi_a1b2c3d4e5f6... (67 characters total).

Using your key

Include the key as a Bearer token in the Authorization header:

curl -H "Authorization: Bearer fi_your_key_here" \
  https://feedindex.app/api/v1/public/boards/your-board-slug/posts

All write endpoints (POST) require an API key. Read endpoints (GET) are public and do not require authentication.

Revoking a key

Go to Workspace Settings > API Keys, find the key by name, and click Revoke. The key is invalidated immediately — any requests using it will receive a 401 response.

On this page