Plurex Docs Help

Authentication

API key management

Before you can start using the API you need an API Key. You can manage API keys for your personal account or an organization if you have permissions.

API keys have 2 components:

  • Key: A unique public identifier

  • Secret: this is a generated secret that is only available at creation and after that it is not recoverable

You can also give your API keys labels, but these are not used in actual authentication.

Authentication

Once you have your API key, you can test that it works with our API key test endpoint.

All authenticated requests require the following headers:

X-API-KEY: YOUR_API_KEY X-API-SECRET: YOUR_API_SECRET

Test your API key with the following request:

GET /api/test HTTP/1.1 Host: platform.plurex.io X-API-KEY: YOUR_API_KEY X-API-SECRET: YOUR_API_SECRET
08 April 2025