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

# Retrieve Stripe account status

> Minimal Stripe account status for host payout/payment gating UI. Used to gate payout and payment features.



## OpenAPI

````yaml GET /stripe/account-status
openapi: 3.0.0
info:
  title: PLEC API
  description: PLEC backend API reference
  version: '1.0'
  contact: {}
servers:
  - url: https://api.plec-it.com
    description: Production
  - url: https://api-staging.plec-it.com
    description: Staging
  - url: http://localhost:3000
    description: Local Development
security: []
tags: []
paths:
  /stripe/account-status:
    get:
      tags:
        - Stripe
      summary: Retrieve Stripe account status
      description: >-
        Minimal Stripe account status for host payout/payment gating UI. Used to
        gate payout and payment features.
      operationId: StripeController_getAccountStatus
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeAccountStatusResponseDto'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponseDto'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponseDto'
      security:
        - bearer: []
        - bearer: []
components:
  schemas:
    StripeAccountStatusResponseDto:
      type: object
      properties:
        payouts_enabled:
          type: boolean
          description: Whether payouts are enabled for the connected account
          example: false
        charges_enabled:
          type: boolean
          description: Whether charges are enabled for the connected account
          example: false
        disabled_reason:
          type: object
          description: Reason account is disabled, if any
          example: null
          nullable: true
        requirements:
          description: Stripe requirement status by category
          allOf:
            - $ref: '#/components/schemas/StripeRequirementsDto'
      required:
        - payouts_enabled
        - charges_enabled
        - disabled_reason
        - requirements
    ApiErrorResponseDto:
      type: object
      properties:
        message:
          type: string
          description: Human-readable error message
          example: Validation failed
        code:
          type: string
          description: Machine-readable error code
          example: BAD_REQUEST
        details:
          type: object
          description: Additional validation or context details
          example:
            - date must be a valid ISO 8601 date
      required:
        - message
    StripeRequirementsDto:
      type: object
      properties:
        past_due:
          description: Past due requirement IDs
          example: []
          type: array
          items:
            type: string
        currently_due:
          description: Currently due requirement IDs
          example: []
          type: array
          items:
            type: string
        pending_verification:
          description: Pending verification requirement IDs
          example: []
          type: array
          items:
            type: string
        eventually_due:
          description: Eventually due requirement IDs
          example: []
          type: array
          items:
            type: string
      required:
        - past_due
        - currently_due
        - pending_verification
        - eventually_due
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````