Authentication
The Forefront API uses API keys for authentication. Visit your API Keys page to retrieve the API key you'll use in your requests.
All API requests should include your API key in an Authorization
HTTP header as follows:
Authorization: Bearer FOREFRONT_API_KEY
Alternatively, instantiate your API key with the Python or Node.js package:
from Forefront import forefront
client = ForefrontClient(api_key='FOREFRONT_API_KEY')
Last updated