Official Python SDK for the Ontiver API
Project description
Ontiver Python SDK
Official Python SDK for integrating Ontiver verification, screening, proofs, and webhooks into enterprise backends.
The dashboard remains the control plane for API keys, scopes, billing, team roles, webhooks, and audit logs. The SDK is the integration layer for Django, Flask, FastAPI, workers, and internal services.
Install Locally
From this repository:
cd sdks/python
python -m pip install -e ".[test]"
After publication:
python -m pip install ontiver
Configuration
Create an API key from the Ontiver enterprise dashboard and store it in your secret manager.
ONTIVER_API_KEY=prod_xxx
ONTIVER_BASE_URL=https://api.ontiver.com
ONTIVER_ENVIRONMENT=production
ONTIVER_WEBHOOK_SECRET=whsec_xxx
Use sandbox keys in non-production environments:
ONTIVER_API_KEY=sb_xxx
ONTIVER_ENVIRONMENT=sandbox
Quickstart
from ontiver import OntiverClient
client = OntiverClient.from_env()
startup_check = client.validate_api_key()
print(startup_check["valid"])
Verification
SDK v1 routes flexible verification payloads to:
POST /api/v1/banking/kyc/individual/verify
GET /api/v1/banking/kyc/individual/{verificationId}
result = client.verifications.create(
{
"customerId": "cust_123",
"firstName": "Ada",
"lastName": "Okafor",
"country": "NG",
"idDocumentType": "passport",
"idDocumentNumber": "A12345678",
},
idempotency_key="verify-cust-123",
)
status = client.verifications.get(result["verificationId"])
Screening
screening = client.screening.sanctions_check(
first_name="Ada",
last_name="Okafor",
nationality="NG",
idempotency_key="sanctions-cust-123",
)
Supported methods:
client.screening.pep_check(...)client.screening.sanctions_check(...)client.screening.adverse_media_check(first_name, last_name, ...)
Proofs
proof = client.proofs.get_for_verification("ver_123")
verified = client.proofs.verify(
proof_id=proof["proofId"],
proof=proof.get("proof"),
)
Supported methods:
client.proofs.generate(...)client.proofs.get_for_verification(verification_id)client.proofs.verify(proof_id, proof=None)client.proofs.disclose(proof_id, fields=[...])
Webhooks
Register a webhook:
webhook = client.webhooks.register(
"https://example.com/webhooks/ontiver",
["verification.completed", "proof.issued"],
)
# Store this once. It will not be returned by list endpoints.
secret = webhook["secret"]
Verify webhook signatures using the raw request body:
from ontiver.webhooks import verify_webhook_signature
is_valid = verify_webhook_signature(raw_body, request.headers["X-Ontiver-Signature"], secret)
Header format:
X-Ontiver-Signature: sha256=<hex_digest>
Raw Request Escape Hatch
Use raw_request() for routes that do not have first-class wrappers yet:
result = client.raw_request(
"POST",
"/aml/smile-checks",
json={"fullName": "Ada Okafor", "countries": ["NG"]},
idempotency_key="aml-cust-123",
)
Errors
Catch specific exceptions:
from ontiver import AuthenticationError, PermissionDeniedError, RateLimitError, ValidationError
try:
client.validate_api_key()
except AuthenticationError:
...
except PermissionDeniedError:
...
except RateLimitError:
...
except ValidationError:
...
The SDK redacts API keys, bearer tokens, webhook secrets, and secret prefixes from exception messages.
Security Notes
- Never commit API keys or webhook secrets.
- Store production secrets in a secret manager.
- Use least-privilege API key scopes.
- Use sandbox keys outside production.
- Verify webhook signatures over the raw body bytes before parsing JSON.
- Do not log raw identity documents, ID numbers, biometric payloads, or full provider payloads.
Build And Publish
Build locally:
cd sdks/python
python -m pip install -e ".[test]"
pytest
python -m pip install ".[build]"
python -m build
python -m twine check dist/*
Publish first to TestPyPI:
python -m twine upload --repository testpypi dist/*
Install from TestPyPI in a clean environment:
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple ontiver
Publish to PyPI after TestPyPI install passes:
python -m twine upload dist/*
Target package name: ontiver.
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 ontiver-0.1.0.tar.gz.
File metadata
- Download URL: ontiver-0.1.0.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf9616299fd34f85acf5937d7a1c15a10ec8347e811814a67616c38307e55127
|
|
| MD5 |
7d63dd4696cb61a3c8365364125c5112
|
|
| BLAKE2b-256 |
60f3bdb0f4626881c2cd9df003949316f1bd4ce89df2f3a99e7e6579ea507071
|
File details
Details for the file ontiver-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ontiver-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb313331c5f4a9627e76c96f2f6d00ded8b1830274e01f0240b3f351f83287b8
|
|
| MD5 |
cfb1998b03036383600b8da54151f10b
|
|
| BLAKE2b-256 |
9492c1a261326371b125661a1727b7e20efe07f7ed2a2040a5269b4599e7151a
|