Skip to content

Authentication

All requests to the API must include your project's API key in the X-Api-Key header.

js
axios.get(
  'https://controller.sih.market/online/count',
  {
    headers: {
      'X-Api-Key': YOUR_API_KEY
    }
  }
)

WARNING

Requests without a valid X-Api-Key header will be rejected. Keep your API key secret and never expose it in client-side code.