Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ominiflow WhatsApp API — Python SDK

WhatsApp Business API for Python developers — send WhatsApp messages without creating a Meta app, managing system user tokens, or configuring Cloud API webhooks yourself.

Get a testing number and API key in under 2 minutes:
developer.ominiflow.com

Docs Playground License: MIT


Why Ominiflow?

Raw WhatsApp Cloud API onboarding is complex (Meta apps, Business Manager, permanent tokens).

Ominiflow Embedded Signup:

Connect Facebook → Get testing number → Authenticate with OMINI_ API key

Built for startups, automation builders, CRM/ERP integrators, and Python backends.


Install

pip install ominiflow-whatsapp

Alpha: until PyPI publish, install from this repo:

pip install git+https://github.com/ominiflow/ominiflow-python.git

Quick start

from ominiflow import Client

client = Client(api_key="OMINI_xxxxxxxx")

client.messages.send(
    phone="919876543210",
    message="Hello from Ominiflow!",
)

Send a template

client.messages.send_template(
    phone="919876543210",
    template_name="hello_world",
    language="en",
)

cURL equivalent

curl -X POST 'https://whatsapp.ominiflow.com/api/wpbox/sendmessage' \
  -H 'Authorization: Bearer OMINI_xxxxxxxx' \
  -H 'Content-Type: application/json' \
  -d '{"phone":"919876543210","message":"Hello from Ominiflow!"}'

Features

  • Send text & media WhatsApp messages
  • Template messages
  • Interactive lists
  • Contacts helpers
  • Compatible with the API Playground
  • Outbound webhooks (X-Ominiflow-Signature)

Documentation

Resource Link
Developer Portal https://developer.ominiflow.com
API Docs https://developer.ominiflow.com/docs
API Playground https://developer.ominiflow.com/playground
Get API Key https://developer.ominiflow.com/api-keys

Related SDKs


Keywords

whatsapp api python · whatsapp business api · whatsapp cloud api · send whatsapp message · python whatsapp sdk · ominiflow


License

MIT © Ominiflow

About

Python SDK for Ominiflow WhatsApp Business API — send WhatsApp messages without Meta Developer App setup. Docs: developer.ominiflow.com

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages