> ## 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 interactive web push demo page

> Returns an HTML page that demonstrates web push notification functionality. This demo allows users to register for push notifications and send test notifications to verify the subscription.



## OpenAPI

````yaml api-reference/push.yaml get /demo
openapi: 3.0.3
info:
  title: push
  description: >-
    The Push service keeps track of which user browsers have signed up to
    receive notifications and how to reach them using VAPID. Other services tell
    it when a notification should be sent, and it delivers that message directly
    to the user's browser.
  version: 1.0.0
servers:
  - url: https://push.platform.arb.inc
security: []
tags:
  - name: /
  - name: demo
  - name: internal
  - name: vapid-keys
  - name: web-push
paths:
  /demo:
    get:
      tags:
        - demo
      summary: Get interactive web push demo page
      description: >-
        Returns an HTML page that demonstrates web push notification
        functionality. This demo allows users to register for push notifications
        and send test notifications to verify the subscription.
      operationId: getDemo
      responses:
        '200':
          description: HTML demo page for testing web push notifications
          content:
            text/html:
              schema:
                type: string

````