Welcome

Welcome to the API documentation for Feedbase. There are two different API’s available:

Create a new API key

To access the Project API, you need to provide an API key. You can create a new API key with the necessary scopes by clicking below.

Create new key

Create a new API key to access the API.

Authentication

All project endpoints are protected and require a valid API key. You can provide the API key in the Authorization header as a Bearer token.

const response = await fetch('https://api.feedbase.app/v1', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer fb_xxxxxxxxxxxxxxxxxxxx',
  },
})