Official Python SDK for Kirimi WhatsApp API
Project description
kirimi-python
Official Python SDK for the Kirimi WhatsApp API.
Installation
pip install kirimi
Quick Start
from kirimi import Kirimi
client = Kirimi(user_code="YOUR_USER_CODE", secret="YOUR_SECRET")
resp = client.send_message(
device_id="YOUR_DEVICE_ID",
phone="628123456789",
message="Halo dari Kirimi SDK!",
)
print(resp.success, resp.message)
Sync vs Async
Both interfaces share the same method signatures. Use Kirimi for synchronous code and AsyncKirimi for async/await code.
# Sync
from kirimi import Kirimi
with Kirimi(user_code="...", secret="...") as client:
resp = client.list_devices()
# Async
import asyncio
from kirimi import AsyncKirimi
async def main():
async with AsyncKirimi(user_code="...", secret="...") as client:
resp = await client.list_devices()
print(resp.data)
asyncio.run(main())
Constructor
Kirimi(
user_code="...", # required
secret="...", # required
base_url="https://api.kirimi.id", # optional
timeout=30.0, # optional, seconds
http_client=None, # optional, inject custom httpx.Client
)
user_code and secret are automatically added to every request body.
All Methods
Messaging
# Send text/media message
client.send_message(device_id="D", phone="628xxx", message="hi", media_url="https://...")
# Send file (BinaryIO, bytes, or pathlib.Path)
with open("doc.pdf", "rb") as f:
client.send_message_file(device_id="D", phone="628xxx", file=f, file_name="doc.pdf", message="see attached")
# Send message fast (no typing indicator)
client.send_message_fast(device_id="D", phone="628xxx", message="hi")
# Send via WABA (WhatsApp Business API)
client.send_waba_message(device_id="D", phone="628xxx", message="hi")
Devices
client.list_devices()
client.device_status(device_id="D")
client.device_status_enhanced(device_id="D")
User
client.user_info()
Contacts
client.save_contact(phone="628xxx", name="John Doe", email="john@example.com")
OTP v1
# Generate & send OTP
client.generate_otp(
device_id="D",
phone="628xxx",
otp_length=6,
otp_type="numeric", # "numeric" | "alphabetic" | "alphanumeric"
custom_otp_message="Kode: {otp}",
)
# Validate OTP
client.validate_otp(device_id="D", phone="628xxx", otp="123456")
OTP v2
# Send OTP (device or WABA method)
client.send_otp_v2(
phone="628xxx",
device_id="D",
method="device", # "device" | "waba"
app_name="MyApp",
custom_message="Your OTP for {app}: {otp}",
)
# Verify OTP
client.verify_otp_v2(phone="628xxx", otp_code="123456")
Broadcast
# phones can be a list or comma-separated string
client.broadcast_message(
device_id="D",
phones=["628111", "628222", "628333"],
message="Promo spesial!",
delay=2.0, # seconds between each message
)
Deposits & Packages
client.list_deposits(status="paid") # "" | "paid" | "unpaid" | "expired"
client.list_packages()
Response Model
All methods return a KirimiResponse Pydantic model:
class KirimiResponse(BaseModel):
success: bool
data: Any | None
message: str | None
Error Handling
from kirimi import Kirimi
from kirimi.exceptions import KirimiAPIError, KirimiConnectionError
client = Kirimi(user_code="...", secret="...")
try:
resp = client.send_message(device_id="D", phone="628xxx", message="hi")
except KirimiAPIError as e:
print(f"API error {e.status_code}: {e.message}")
except KirimiConnectionError as e:
print(f"Network error: {e}")
| Exception | When raised |
|---|---|
KirimiAPIError |
Non-2xx HTTP response |
KirimiValidationError |
Pydantic response parsing failure |
KirimiConnectionError |
Network/transport error |
KirimiError |
Base class for all SDK errors |
License
MIT — Copyright 2026 Kirimi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kirimi_sdk-0.1.0.tar.gz.
File metadata
- Download URL: kirimi_sdk-0.1.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20c3d1293e666c4bf1d241a3f2f92acf10eb4f0b41b60e2f833152d953880b68
|
|
| MD5 |
c26618e8d2e148efee73be459f49475a
|
|
| BLAKE2b-256 |
09d697fd4890bd3289d743828d1da5314ebc660004f7af2f04dc01713e4bb93b
|
File details
Details for the file kirimi_sdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: kirimi_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d14b9878c807715efe3f0997e93fea632fa51ea411c8e25e3f9b9bd6350e63b
|
|
| MD5 |
a40671dcb852524af91fe69e668893bd
|
|
| BLAKE2b-256 |
ac3700b2ce58f6f14407f55f1ac2eeee380ff12405f42297acb3c6301f40142b
|