Skip to content

Authentication

All requests to the API must include your project's API key in the apikey header.

js
axios.get(
  'https://api.sih.market/api/v1/project',
  {
    headers: {
      apikey: YOUR_API_KEY
    }
  }
)

WARNING

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