Skip to main content

Official AbsolutePay API client for Python — payments, payouts, invoices, conversions, off-ramp, gift cards, and signed webhooks.

Project description

absolutepay

Official AbsolutePay API client for Python. Server-side only — your API key and signing secret must never reach a browser.

Every request from an app key is HMAC-signed automatically. Inbound webhooks are verified with one call. Zero runtime dependencies — standard library only.

Install

pip install absolutepay

Requires Python 3.9+.

Environments

Config Base URL
default https://api.absolutepay.io (production)
sandbox=True https://sandbox-api.absolutepay.io
base_url="https://…" your override (takes precedence over sandbox)

Use a dedicated sandbox app (sign up at sandbox.absolutepay.io) with sandbox=True to test end-to-end without moving real funds.

Quickstart

import os
from absolutepay import AbsolutePay

ap = AbsolutePay(
    api_key=os.environ["ABSOLUTEPAY_API_KEY"],            # ap_live_… / ap_test_…
    signing_secret=os.environ["ABSOLUTEPAY_SIGNING_SECRET"],  # apisign_…  (required for app keys)
    # sandbox=True,             # → https://sandbox-api.absolutepay.io (default is production)
    # base_url="https://…",     # optional: override the origin entirely (wins over sandbox)
)

balances = ap.balances.list()
preview = ap.fees.preview(amount="100", currency="USDT")

invoice = ap.invoices.create(
    reference="order-123",
    amount={"amount": "25.00", "currency": "USDT"},
    chain="MATIC",  # mint the deposit address up front; omit to let the payer pick
)
print(invoice["token"])

Money

Amounts are plain dicts — a decimal string plus a currency code:

{"amount": "10.00", "currency": "USDT"}

Resources

balances · fees · payments · payouts · refunds · conversions · invoices (+ invoices.public) · subscriptions · giftcards · offramp · transactions

# Batch payout (idempotent — a retry with the same key never pays twice)
ap.payouts.create(
    [{"recipientAddress": "0xabc…", "chain": "MATIC", "amount": {"amount": "5.00", "currency": "USDT"}}],
    idempotency_key="payroll-2026-07-01",
)

# Quote + execute a conversion in one call
order = ap.conversions.convert(sell_currency="USDT", buy_currency="ETH", sell_amount="100")

# Ledger, filtered by time range (epoch ms) and paginated
ledger = ap.transactions.list(from_=1_700_000_000_000, to=1_800_000_000_000, limit=50, offset=0)

Errors

Non-2xx responses raise AbsolutePayError:

from absolutepay import AbsolutePayError

try:
    ap.invoices.list()
except AbsolutePayError as e:
    print(e.status, e.code, e.detail, e.request_id)
    if e.is_rate_limited:  # 429 — back off and retry
        ...
    if e.is_auth:          # 401/403 — bad creds, missing scope, or bad signature
        ...

Webhooks

Verify the signature and parse the event in one call. Pass the raw request body (bytes or str), the request headers, and your app's callback secret (whsec_…):

from absolutepay import construct_event, WebhookSignatureError

# e.g. in a Flask handler
raw = request.get_data()  # RAW bytes — do not re-serialize
try:
    event = construct_event(raw, dict(request.headers), os.environ["ABSOLUTEPAY_WEBHOOK_SECRET"])
except WebhookSignatureError:
    return "", 400

if event["type"] == "payment.succeeded":
    fulfill(event["data"])
return "", 200

The freshness (replay) window defaults to 5 minutes; pass tolerance_ms=0 to disable it.

Security

  • Server-side only. The API key + signing secret authenticate as your workspace — never ship them to a browser or mobile app.
  • Requests are sent over HTTPS only (except localhost for local development).
  • The Idempotency-Key header (on payouts) is intentionally not part of the signed canonical string.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

absolutepay-0.2.0.tar.gz (35.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

absolutepay-0.2.0-py3-none-any.whl (21.8 kB view details)

Uploaded Python 3

File details

Details for the file absolutepay-0.2.0.tar.gz.

File metadata

  • Download URL: absolutepay-0.2.0.tar.gz
  • Upload date:
  • Size: 35.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for absolutepay-0.2.0.tar.gz
Algorithm Hash digest
SHA256 fd9c5c56b2fc8f0b10081ebd13e779b181ff45e8b6e0cadf3fb0b59a80354f96
MD5 af2210a42ebe8b909e806531cd0a10fd
BLAKE2b-256 e24c7a892d076241d78e12ad0aac3587decc2706ccf87637894eac02dbb2aa0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for absolutepay-0.2.0.tar.gz:

Publisher: release.yml on AbsolutePay/absolutepay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file absolutepay-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: absolutepay-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for absolutepay-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4d93bfa5f9ee875ee905596a534be798b09a2136decd814c39247b75335c4f43
MD5 5350f9ca0883cf4f6502a8821d24a628
BLAKE2b-256 d01b4df4058bcd7ec9444d2cb9e0739792376cdcd5a68440649569e0aac042d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for absolutepay-0.2.0-py3-none-any.whl:

Publisher: release.yml on AbsolutePay/absolutepay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page