SDKs & Libraries
Official Kashia SDKs are coming soon. In the meantime, you can integrate using our REST API directly. See Getting Started for a step-by-step guide.
Node.js (coming soon)
javascript
"code-hl-comment">// Node.js (coming soon)
const kashia = new Kashia({ apiKey: 'your_api_key' });
const customer = await kashia.customers.create({
email: 'buyer@example.com',
first_name: 'John',
last_name: 'Doe',
});Python (coming soon)
python
"code-hl-comment"># Python (coming soon)
kashia = Kashia(api_key='your_api_key')
customer = kashia.customers.create(
email='buyer@example.com',
first_name='John',
last_name='Doe',
)Want to contribute or need early access? Contact us at developers@kashiahq.com.