Documentation
We are currently building our developer documentation. Full API docs, guides, and code examples will be available when Paiker goes live.
Why Documentation Matters
Ever tried reading Pakistani Mobile Wallets API docs? Half the endpoints are outdated. Examples don't work. Error messages make no sense.
We're building docs that actually help you ship. Clear examples. Real error handling. Copy-paste code that works. Because if our docs are confusing, we failed.
What You Will Get
API Reference
Complete API documentation with all endpoints, parameters, and response formats.
Quick Start Guides
Step by step guides to get you accepting payments in minutes.
Code Examples
Ready to use code snippets in Python, JavaScript, PHP, and more.
Webhooks Guide
Learn how to receive real time payment notifications.
Testing Guide
How to test payments in dev mode with test cards and accounts.
Mobile SDKs
Flutter and native iOS/Android SDKs for mobile apps.
Get Notified When Docs Are Ready
Join the waitlist and we will email you when the documentation goes live.
API Preview
# Create a payment intent
import paiker
paiker.api_key = "pk_dev_your_api_key"
payment = paiker.PaymentIntent.create(
amount=5000, # Amount in paisa (Rs. 50)
currency="pkr",
payment_methods=["card", "easypaisa", "jazzcash"],
description="Order #1234",
)
print(payment.id) # pi_1234567890
print(payment.client_secret) # Use this in your frontend
This is a preview. Actual API may differ slightly when released.