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

# Anonymous probe

> Echo the caller. Useful for partners verifying that anonymous access works as expected.



## OpenAPI

````yaml /openapi.json get /api/public/v1/_probe/public
openapi: 3.0.3
info:
  title: Flexslot API
  version: 1.0.0
  description: API documentation for Flexslot decks application
servers:
  - url: https://api.flexslot.gg
    description: Production
  - url: https://api-dev.flexslot.gg
    description: Development
security: []
paths:
  /api/public/v1/_probe/public:
    get:
      tags:
        - Probes
      summary: Anonymous probe
      description: >-
        Echo the caller. Useful for partners verifying that anonymous access
        works as expected.
      operationId: _probe_public_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  caller:
                    type: string
                  scopes:
                    type: array
                    items:
                      type: string
          description: ''
      security:
        - {}

````