Authentication

All requests must include an X-API-KEY header containing a valid API key. This key is essential for authentication and should be treated as confidential information.

Example

const result = await fetch('https://path/to/url/', {
  headers: {
    'X-API-KEY':
      'd108a3f0743d2fee1253c6904029f23f1da31b21b92ecb29b120f54691bc4846',
  },
});