Skip to main content

Authentication

TechSlayers products use either API keys (sent as headers) or bearer tokens (sent via the Authorization header).
Never embed secrets in client-side code. Store them in your server environment (or a secret manager) and rotate them regularly.

Product auth matrix

  1. Keep the secret server-side only.
  2. Add a thin wrapper per product that:
    • injects auth headers
    • sets a sensible timeout
    • logs request IDs (if present)
    • retries only when safe (see /platform/rate-limits)

Examples

DarkRecon (X-API-Key)

Senthrex (Authorization: Bearer)