> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boostgpt.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Fire Trigger Event

> Fire a proactive trigger event for an agent (public, no auth required, rate limited to 60 req/min)



## OpenAPI

````yaml /api-reference/openapi.json post /v1/bot/trigger
openapi: 3.0.0
info:
  title: BoostGPT API
  version: 1.0.0
  description: API for managing AI agents with memory capabilities
servers:
  - url: https://api.boostgpt.co
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Agent
    description: Operations for managing AI agents
  - name: Memory
    description: Operations for managing agent memory sources
  - name: Chat
    description: Operations for chatting with agents and managing conversations
  - name: Subscribers
    description: Operations for managing subscribers and leads
  - name: Tools
    description: Operations for managing agent tools and MCP server integrations
  - name: Analytics
    description: Operations for retrieving agent statistics and analytics
  - name: Heartbeat
    description: Operations for managing autonomous agent scheduling and execution
  - name: User Memory
    description: Operations for managing per-user memory entries
  - name: Email
    description: Operations for managing agent email functionality
  - name: Triggers
    description: Operations for firing proactive agent trigger events
  - name: CRM
    description: >-
      Operations for managing agent CRM contacts, pipelines, deals, follow-ups,
      and reports
  - name: Workflows
    description: Operations for managing agent workflow automations
  - name: Calendar
    description: Operations for managing agent calendar settings, availability, and events
  - name: Workspace
    description: Operations for managing agent workspaces and files
paths:
  /v1/bot/trigger:
    post:
      tags:
        - Triggers
      summary: Fire Trigger Event
      description: >-
        Fire a proactive trigger event for an agent (public, no auth required,
        rate limited to 60 req/min)
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - bot_id
                - event
              properties:
                bot_id:
                  type: string
                  description: Agent ID
                event:
                  type: string
                  description: Event name (e.g., 'checkout_error')
                context:
                  type: object
                  description: Custom context key-value pairs
                source_url:
                  type: string
                  description: Page URL where trigger fired
                user:
                  type: object
                  description: User information
                  properties:
                    name:
                      type: string
                    email:
                      type: string
                    id:
                      type: string
                screenshot:
                  type: string
                  description: Base64 data URL of page screenshot (max 5MB)
      responses:
        '200':
          description: Trigger fired successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  chat_id:
                    type: string
                    description: Chat session UUID
                  chat_url:
                    type: string
                    description: URL to chat interface
                  event:
                    type: string
                    description: Event name
        '429':
          description: Rate limit exceeded
      security: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Enter your API key

````