Skip to main content

Welcome

Welcome to the API documentation for Feedbase. There are two different API’s available:
The public API is used to access public project data. This mainly includes data that is available on your public hub.
The project API is used to access private project data. There are two different scopes for the project API:
  • Public scope should be used for our Typescript SDK
  • Full Access scope is used to access project data and manage project settings

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',
  },
})
I