Documentation

Everything you need to integrate Wedi into your AI service

Quick Start Guide
Get up and running with Wedi in minutes

1. Install the SDK

npm install @wedi/pay

2. Initialize the Client

import { WediPay } from '@wedi/pay';

const wedi = new WediPay({
  apiKey: 'your_api_key'
});

// Create a payment intent
const paymentIntent = await wedi.paymentIntents.create({
  amount: 1000, // Amount in cents
  currency: 'USDC',
  description: 'AI Service Payment'
});