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

# Get Payment Status



## OpenAPI

````yaml /api-reference/openapi.json get /api/dashboard/payment-status
openapi: 3.1.0
info:
  title: Agentic Commerce API
  description: |2-

        Agentic Commerce API - E-commerce Backend

        ## APIs

        ### Dashboard API (`/api/dashboard`)
        Authenticated endpoints for merchant management:
        - Products, Variants, Options
        - Inventory management
        - Orders and fulfillment
        - Customers
        - Collections

        ### Storefront API (`/api/storefront`)
        Public endpoints for client websites:
        - Product catalog
        - Collections
        - Cart management
        - Checkout

        ### Sync API (`/api/sync`)
        Integration endpoints for zunkiree-search:
        - Product sync
        - Availability checks
        - Order creation from AI widget
        
  version: 1.0.0
servers: []
security: []
paths:
  /api/dashboard/payment-status:
    get:
      tags:
        - Dashboard
        - Payment Status
      summary: Get Payment Status
      operationId: get_payment_status_api_dashboard_payment_status_get
      parameters:
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
        - name: X-Stella-Merchant-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Stella-Merchant-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PaymentStatusResponse:
      properties:
        stripe_configured:
          type: boolean
          title: Stripe Configured
        webhook_configured:
          type: boolean
          title: Webhook Configured
        mode:
          type: string
          enum:
            - test
            - live
            - unconfigured
          title: Mode
        api_version:
          type: string
          title: Api Version
        connect_status:
          type: string
          const: not_configured
          title: Connect Status
          default: not_configured
      type: object
      required:
        - stripe_configured
        - webhook_configured
        - mode
        - api_version
      title: PaymentStatusResponse
      description: |-
        Stripe configuration status as seen by the backend.

        `mode` is "test" if the configured key is `sk_test_…`, "live" if
        `sk_live_…`, "unconfigured" if unset. Lets the dashboard show a
        visible test-mode badge so merchants don't accidentally believe
        they're taking real card data on stage.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````