Stripe .NET
The official Stripe .NET library for interacting with the Stripe API – the go-to payment processor for indie developers.
Features
- Complete coverage of the Stripe API
- Strong typing with auto-generated models
- Async-first, supports
HttpClientinjection - Webhook event parsing and verification
Usage
var options = new ChargeCreateOptions
{
Amount = 2000,
Currency = "usd",
Source = "tok_visa",
};
var service = new ChargeService();
var charge = await service.CreateAsync(options);
Ready to get started? Visit the official site to learn more.
Visit official site north_east