> ## 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.

# Partner probe (HMAC or API key)

> Returns the calling partner's slug, scopes, game scopes, and rate-limit tier.



## OpenAPI

````yaml /openapi.json get /api/public/v1/_probe/partner
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/partner:
    get:
      tags:
        - Probes
      summary: Partner probe (HMAC or API key)
      description: >-
        Returns the calling partner's slug, scopes, game scopes, and rate-limit
        tier.
      operationId: _probe_partner_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  caller:
                    type: string
                  scopes:
                    type: array
                    items:
                      type: string
                  game_scopes:
                    type: array
                    items:
                      type: string
                  tier:
                    type: string
          description: ''
      security:
        - PartnerHmac: []
          PartnerSlug: []
        - ApiKey: []
components:
  securitySchemes:
    PartnerHmac:
      type: apiKey
      in: header
      name: X-Signature
      description: >-
        HMAC-SHA256 over canonical request string. Format:
        v1.<unix_seconds>.<hex_hmac_sha256>.
    PartnerSlug:
      type: apiKey
      in: header
      name: X-Partner-Id
      description: Partner identifier slug. Required alongside X-Signature for HMAC auth.
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Partner API key (format: ak_<token>). Alternative to HMAC for simpler
        integrations.

````