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

# Get service information

> Returns basic information about the webhooks service, including creation date and author.



## OpenAPI

````yaml api-reference/webhooks.yaml get /
openapi: 3.0.3
info:
  title: webhooks
  description: >-
    The Webhooks service listens to pub/sub topics for platform events and
    forwards them to client systems. It ensures clients receive real-time
    notifications via their configured webhook URLs.
  version: 1.0.0
servers:
  - url: https://webhooks.platform.arb.inc
security: []
tags:
  - name: /
  - name: urls
paths:
  /:
    get:
      tags:
        - /
      summary: Get service information
      description: >-
        Returns basic information about the webhooks service, including creation
        date and author.
      operationId: getRoot
      responses:
        '200':
          description: Welcome message with service details
          content:
            text/plain:
              schema:
                type: string
                example: >-
                  Welcome to the webhooks service. Created on August 25, 2025 by
                  Al Beebe

````