Welcome to the New BigPanda API Documentation
Authorization header with a Bearer token. Depending on the endpoint, you also set headers that declare the content type of the data you send and the format you want back.Authorization: Bearer <your_api_key>
Accept: application/json
Content-Type: application/json; charset=utf8Authorization: Your Bearer token. Required on every request.Accept: The response format you want. Most endpoints return JSON.Content-Type: The format of the payload you send. Required on POST and PUT requests with a body.application/json unless an endpoint's reference states otherwise. See Making requests for content type details and exceptions.Keep authentication secure Add authentication headers only in the secure tool you use to make API calls. Store tokens in environment variables or a secret manager, never in shared code.