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

# Get all contact submissions



## OpenAPI

````yaml /openapi.json get /admin/contacts
openapi: 3.0.0
info:
  title: Uptime Monitor API
  description: >-
    API documentation for the Uptime Monitor application. This API allows users
    to create and manage website monitors, perform checks, and view statistics.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.justanotheruptime.com
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: projects
    description: Project management endpoints
  - name: monitors
    description: Monitor management endpoints
  - name: checks
    description: Check-related endpoints
  - name: statistics
    description: Monitor statistics endpoints
paths:
  /admin/contacts:
    get:
      tags:
        - Admin
      summary: Get all contact submissions
      operationId: AdminController_getAllContacts
      parameters:
        - name: contacted
          required: false
          in: query
          description: Filter by contacted status
          schema:
            type: boolean
        - name: limit
          required: false
          in: query
          description: 'Items per page (default: 10)'
          schema:
            type: number
        - name: page
          required: false
          in: query
          description: 'Page number (default: 1)'
          schema:
            type: number
      responses:
        '200':
          description: Returns all contact submissions
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````