Official Python SDK for the Verifiquemos compliance API
Project description
verifiquemos
Official Python SDK for the Verifiquemos compliance API.
KYC, RENAP, OFAC, ONU, Lista Engel, PEP, CPE — Guatemala-specific compliance in one API call.
Install
pip install verifiquemos
Quickstart (sync)
from verifiquemos import VerifiquemosClient
with VerifiquemosClient(api_key="vfq_...") as client:
me = client.auth.me()
print(me["tenant"]["name"])
# cui is NOT a parameter — it is extracted from the DPI via OCR.
with open("dpi.jpg", "rb") as f:
validation = client.validations.create(
naturaleza_cliente="individual",
dpi_file=f.read(),
pais_origen_fondos="GTM",
)
print(f"Validation submitted: {validation['id']}")
Quickstart (async)
import asyncio
from verifiquemos import AsyncVerifiquemosClient
async def main():
async with AsyncVerifiquemosClient(api_key="vfq_...") as client:
me = await client.auth.me()
print(me)
asyncio.run(main())
Error handling
from verifiquemos import ApiError, RateLimitError, NetworkError, VerifiquemosClient
with VerifiquemosClient(api_key="vfq_...") as client:
try:
client.validations.create(...)
except RateLimitError as e:
print(f"Retry after {e.retry_after_seconds}s")
except ApiError as e:
if e.is_payment_required:
print("Buy more credits")
else:
raise
except NetworkError:
print("Connection failed")
Configuration
| Argument | Default | Description |
|---|---|---|
api_key |
(required) | Server-issued API key. Starts with vfq_. |
base_url |
https://api.verifiquemos.com |
Override for staging/dev. |
timeout |
30.0 | httpx timeout in seconds. |
Documentation
- API reference: https://api.verifiquemos.com/scalar
- Developer portal: https://verifiquemos.com/developers
License
MIT
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
verifiquemos-0.1.2.tar.gz
(13.3 kB
view details)
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 verifiquemos-0.1.2.tar.gz.
File metadata
- Download URL: verifiquemos-0.1.2.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b998754e3aceb755bcda20de91fd322066ec5490e65cf74429fee086a927d67c
|
|
| MD5 |
f70767d8dad709984ce47773c3f92eee
|
|
| BLAKE2b-256 |
db23f00808a8360e5a8e9d692e3fec2cc27f0cade2b2286ecdeaa1e12f2aa36a
|
File details
Details for the file verifiquemos-0.1.2-py3-none-any.whl.
File metadata
- Download URL: verifiquemos-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.3 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 |
6b3e416df8f17000eeabea011ce0fe92dea85176e4ec3d21b46922704793bba7
|
|
| MD5 |
40771d4fe42869fe91fa906dba2f07dd
|
|
| BLAKE2b-256 |
4bfcf420ed924dc21f2a996d020495856ffa4df7cf8f9e5a0166ead1de0dc987
|