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

# Get partner configuration

> Returns enabled integrations (Turnstile, etc.) for a site key. Public config only — secret keys never exposed.



## OpenAPI

````yaml /openapi-sdk-a.json get /sdk/partner-config
openapi: 3.1.0
info:
  title: BotShield SDK A API
  version: 2.0.0
  description: >-
    BotShield SDK A -- Signal-only human presence verification. Momentary
    presence check with no persistence.
  contact:
    name: BotShield Support
    email: support@botshield.ai
    url: https://botshield.ai
servers:
  - url: https://api.botshield.ai/operations
    description: BotShield API
security: []
tags:
  - name: SDK
    description: >-
      Core SDK operations — session management, verification, token validation,
      and Signal Pixel scoring
  - name: Signal Pixel
    description: >-
      BotShield Signal Pixel — passive behavioral fingerprinting with
      tamper-proof server-side scoring
  - name: Verification
    description: Verification status checking and user lookup
paths:
  /sdk/partner-config:
    get:
      tags:
        - SDK
        - Signal Pixel
      summary: Get partner configuration
      description: >-
        Returns enabled integrations (Turnstile, etc.) for a site key. Public
        config only — secret keys never exposed.
      operationId: SdkGetPartnerConfig
      parameters:
        - name: site_key
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Partner configuration
          content:
            application/json:
              schema:
                type: object
                properties:
                  integrations:
                    type: object
                    additionalProperties:
                      type: object
                      properties:
                        enabled:
                          type: boolean
                        site_key:
                          type: string
                        config:
                          type: object
                  environment:
                    type: string
                    enum:
                      - test
                      - live

````