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

# Stripe

> Retrieve the vendor's Stripe Connect integration status

<Note>
  **V2 Alpha** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Retrieve the Stripe Connect integration status for the authenticated vendor. Shows whether the vendor has completed Stripe onboarding for payout processing.

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "integration": {
      "type": "stripe",
      "connected": true,
      "accountId": "acct_1234567890",
      "chargesEnabled": true,
      "payoutsEnabled": true,
      "updatedAt": "2024-04-15T12:00:00.000Z"
    }
  }
}
```

## Example

```bash theme={null}
curl -X GET "https://staging-api.puppetvendors.com/integrations/stripe" \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN"
```
