Claude
Skills
Sign in
โ† Back

stripe

Included with Lifetime
$97 forever

Stripe payment platform integration. Manage payments, subscriptions, invoices, and customers via Stripe API.

Backend & APIs

What this skill does


# Stripe ๐Ÿ’ต

Stripe payment platform integration.

## Setup

```bash
export STRIPE_API_KEY="sk_live_..."
```

## Features

- Create payment intents
- Manage subscriptions
- Send invoices
- Customer management
- Refund processing
- Webhook handling

## Usage Examples

```
"Create a $50 payment link"
"List recent Stripe payments"
"Refund payment pi_xxx"
"Show subscription for [email protected]"
```

## API Reference

```bash
# List recent charges
curl -s https://api.stripe.com/v1/charges?limit=10 \
  -u "$STRIPE_API_KEY:"
```

Related in Backend & APIs