# HivePay > Payment gateway for the Hive blockchain. Stripe-like API for accepting HIVE and HBD payments. HivePay lets developers accept Hive blockchain payments via a simple REST API and TypeScript SDK. It handles checkout flows, webhook notifications, fee calculations, and x402 HTTP-native micropayments. **Using LLMs?** Check out our skills: `npx skills add hivepayme/agent-skills` to enable AI agents to integrate HivePay into your applications with ease. ## Key links - Docs: https://docs.hivepay.me - Full LLM docs: https://docs.hivepay.me/llms-full.txt - OpenAPI spec: https://hivepay.me/openapi.json - SDK (npm): https://www.npmjs.com/package/@hivepay/client - Dashboard: https://dashboard.hivepay.me - Status: https://status.hivepay.me - x402 facilitator: https://hivepay.me/api/public/x402/ ## Quick start ```bash pnpm add @hivepay/client ``` ```typescript import { HivePay } from '@hivepay/client'; const hivepay = new HivePay({ apiKey: 'sk_live_xxx' }); const payment = await hivepay.payments.create({ amount: '10500', // 10.500 HBD (3 decimal precision) currency: 'HBD', description: 'Order #12345' }); window.location.href = payment.checkoutUrl; ``` ## Sections - [Dashboard](https://docs.hivepay.me/dashboard/): The HivePay Dashboard is a web-based interface for merchants to manage payments, configure settings, and monitor their account. - [Getting Started](https://docs.hivepay.me/getting-started/): Welcome to HivePay! This guide will help you get started with accepting Hive blockchain payments in your application. - [Payments](https://docs.hivepay.me/payments/): Learn how to create, track, and manage payments with HivePay. - [SDK Reference](https://docs.hivepay.me/sdk/): Official client libraries for integrating HivePay into your applications. - [Support](https://docs.hivepay.me/support/): Get help with HivePay integration and troubleshooting. - [x402 Protocol](https://docs.hivepay.me/x402/): Accept automated HBD payments from AI agents and x402-aware clients through your existing HivePay checkout URLs.