Documentation Index
Fetch the complete documentation index at: https://docs.lilbots.io/llms.txt
Use this file to discover all available pages before exploring further.
Webhook Triggers API
Webhook triggers allow you to invoke your lil’bots from any external platform through a simple API endpoint. This documentation provides a complete reference for the webhook triggers API, including authentication, request formats, and response structures.Authentication
All endpoints in the Webhook Triggers API require authentication via an API key. This key is specific to each trigger and is provided when you create a trigger in the lil’bots platform. The API key should be passed in theX-Key header with each request:
How Webhook Triggers Work
- Create a Trigger: Set up a webhook trigger in your bot’s settings
- Invoke the Bot: Make a POST request to the trigger endpoint with your inputs
- Processing: The bot runs asynchronously in the background
- Check Results: Optionally wait for completion and retrieve outputs using the sync endpoint
main function.
Rate Limits
To ensure platform stability, the webhook API has the following rate limits:- Maximum of 10 requests per second per trigger
- Maximum of 100 requests per minute per account
429 Too Many Requests response.