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

# Event Delivery Log

> Retrieves a list of tracked events for a specific store based on the `x-store-id` header. Supports filtering by event name and pagination.

**Use case:** Useful for auditing and reviewing the events tracked, aiding in performance monitoring and data analysis.

**Query Parameters:**
- `limit` (integer, optional): The maximum number of events to return.
- `event` (string, optional): The name of the event to filter by.

**Responses:**
- **200:** A list of tracked events.




## OpenAPI

````yaml get /events
openapi: 3.0.0
info:
  title: Webhooks & Events
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /events:
    get:
      tags:
        - Webhooks
      summary: Event Delivery Log
      description: >
        Retrieves a list of tracked events for a specific store based on the
        `x-store-id` header. Supports filtering by event name and pagination.


        **Use case:** Useful for auditing and reviewing the events tracked,
        aiding in performance monitoring and data analysis.


        **Query Parameters:**

        - `limit` (integer, optional): The maximum number of events to return.

        - `event` (string, optional): The name of the event to filter by.


        **Responses:**

        - **200:** A list of tracked events.
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
        - name: event
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: A list of tracked events.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrackedEventsResponse'
components:
  schemas:
    TrackedEventsResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              event:
                type: string
              success:
                type: boolean
              response_status:
                type: integer
              error_message:
                type: string
              payload:
                type: object
              created_at:
                type: string
                format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````