Getting Started
Learn how to integrate Bitmopay into your application.
On this page
Introduction
Bitmopay provides a simple and secure way to accept cryptocurrency payments in your application. This guide will help you get started with integrating Bitmopay into your application.
Before you begin, you'll need to create a Bitmopay account and obtain your API keys from the dashboard.
Installation
You can integrate Bitmopay using our client libraries or directly via our REST API.
npm install @bitmopay/sdk
Quick Start
Here's a simple example of how to create a payment request using the Bitmopay SDK:
curl -X POST https://api.bitmopay.com/v1/payments \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "amount": 100, "currency": "USD", "description": "Payment for Order #1234", "redirectUrl": "https://example.com/success" }'
Next Steps
Now that you've created your first payment request, you can explore more advanced features:
- [Authentication](/documentation/authentication)
- [Create Payment](/documentation/create-payment)
- [Subscriptions](/documentation/subscriptions)
- [Webhooks](/documentation/webhooks)