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

# Get Stripe sandbox

> <Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Returns the stored Stripe sandbox, or `null` if none exists. This read does not refresh its state from Stripe. Requires read access to the app.



## OpenAPI

````yaml /developers/references/app-management/app-management-openapi.json get /api/apps/{app_id}/payments/stripe/sandbox
openapi: 3.1.0
info:
  title: Base44 App Management API
  version: 1.0.0
servers:
  - url: https://app.base44.com
security:
  - ApiKeyAuth: []
paths:
  /api/apps/{app_id}/payments/stripe/sandbox:
    get:
      summary: Get Stripe sandbox
      description: >-
        <Info>This API is in beta. Endpoints, fields, and behavior may still
        change, so avoid depending on it in production.</Info>


        Returns the stored Stripe sandbox, or `null` if none exists. This read
        does not refresh its state from Stripe. Requires read access to the app.
      operationId: get_sandbox_status_api_apps__app_id__payments_stripe_sandbox_get
      parameters:
        - name: app_id
          in: path
          required: true
          schema:
            type: string
            description: ID of the Base44 app.
            title: App Id
          description: ID of the Base44 app.
          example: 6820f3a4e7b91d003c45a1f2
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                  - $ref: '#/components/schemas/SandboxStatusResponse'
                  - type: 'null'
                title: >-
                  Response Get Sandbox Status Api Apps  App Id  Payments Stripe
                  Sandbox Get
        '401':
          description: Missing or invalid credentials.
        '403':
          description: >-
            The credential is not permitted or you don't have the required app
            access. A missing app also fails the app access check.
        '404':
          description: The app is outside the credential's granted workspace.
        '409':
          description: The workspace requires an unlocked SSO session.
components:
  schemas:
    SandboxStatusResponse:
      properties:
        app_id:
          type: string
          title: App Id
          description: ID of the Base44 app.
          example: 6820f3a4e7b91d003c45a1f2
        status:
          type: string
          title: Status
          description: Stored sandbox status. Either `unclaimed`, `claimed`, or `expired`.
          example: unclaimed
        claimable_sandbox_id:
          type: string
          title: Claimable Sandbox Id
          description: Stripe claimable sandbox ID.
          example: clmsbx_T7mK2p9Q4r6S8v
        claim_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Claim Url
          description: >-
            Onboarding link, or `null` when none is stored or you are a
            workspace viewer. Treat this link as a credential.
          example: https://dashboard.stripe.com/claim/example
        stripe_account_id:
          type: string
          title: Stripe Account Id
          description: Stripe account ID for the sandbox.
          example: acct_T7mK2p9Q4r6S8v
        is_claimable:
          type: boolean
          title: Is Claimable
          description: >-
            Whether the sandbox is unclaimed, has not expired, and has a stored
            claim link.
          example: true
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Expires At
          description: >-
            Sandbox expiration as a UTC timestamp in ISO 8601 format, or `null`
            when no expiration is stored.
          example: '2026-10-25T10:00:00'
      type: object
      required:
        - app_id
        - status
        - claimable_sandbox_id
        - claim_url
        - stripe_account_id
        - is_claimable
        - expires_at
      title: SandboxStatusResponse
      description: Sandbox status response.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Personal API key.

````