Skip to content

External Modulation & Stream Deck

vtor.bot provides a secure, API key-based integration layer that allows you to trigger automated stream reactions from external devices like the Elgato Stream Deck.

To use external modulation, you first need to generate an API key:

  1. Go to Settings > Integrations and find the External API section.
  2. Generate a new key and copy it immediately. For security, keys are hashed and cannot be retrieved later.
  3. In your third-party tool, add a header x-api-key with your generated value.

Trigger any automated reaction protocol as if a viewer had redeemed it.

  • Method: POST
  • Path: /api/external/trigger/redemption
  • Body:
    {
    "reward_title": "Drink Water",
    "user_input": "Optional custom message"
    }

Manually trigger the automated clipping engine to save the OBS Replay Buffer.

  • Method: POST
  • Path: /api/external/trigger/clip

You can use the API Requester plugin on Stream Deck to trigger these actions:

  1. URL: https://api.vtor.bot/api/external/trigger/redemption
  2. Headers: Add x-api-key: YOUR_KEY
  3. Body: {"reward_title": "Hydrate"}