https://github.com/browserbase/partner-stripe
https://github.com/browserbase/partner-stripe
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/browserbase/partner-stripe
- Owner: browserbase
- Created: 2025-02-19T08:18:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T16:56:56.000Z (about 1 year ago)
- Last Synced: 2025-08-14T08:19:57.267Z (9 months ago)
- Language: TypeScript
- Size: 28.3 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 Agentic Credit Card Automation
Effortlessly create virtual cards with **Stripe** and automate purchases using **Browserbase**.
Find the full documentation here: https://docs.browserbase.com/integrations/stripe/introduction
## 📌 Overview
This project enables you to:
- **Create virtual cards** with spending controls using Stripe Issuing
- **Retrieve virtual card details**
- **Automate online purchases**
## 📖 Documentation
For full setup instructions, API details, and code examples, visit the official documentation:
📄 **[Agentic Credit Card Automation Docs](https://your-docs-url.com)**
# 📂 Repository Structure
```
partner-stripe/
│── node/ # Node.js implementation
│ ├── .env # Environment variables (ignored in Git)
│ ├── .gitignore
│ ├── package.json # Node.js dependencies
│ ├── 1-create-cardholder.ts
│ ├── 2-create-card.ts
│ ├── 3-get-card.ts
│ ├── 4-make-payment.ts
│
│── python/ # Python implementation
│ ├── .env
│ ├── .gitignore
│ ├── create_cardholder.py
│ ├── create_card.py
│ ├── get_card.py
│ ├── make-payment.py
│
│── stagehand/ # Stagehand integration for AI-powered automation
│ ├── .env
│ ├── .gitignore
│ ├── package.json
│ ├── 1-create-cardholder.ts
│ ├── 2-create-card.ts
│ ├── 3-get-card.ts
│ ├── 4-make-payment.ts
│ ├── stagehand.config.ts
│ ├── index.ts
│ ├── utils.ts
│
│── README.md # This file
```