Skip to main content

Official Python SDK for the OpenSettle API. Stablecoin billing on Base, Ethereum, Polygon, Arbitrum, Solana, and Tron.

Reason this release was yanked:

Schema drift from real API — hallucinated fields and missing envelope unwrap. Upgrade to opensettle>=0.3.0.

Project description

opensettle

Official Python SDK for the OpenSettle API.

Non-custodial stablecoin billing on Base, Ethereum, Polygon, Arbitrum, Solana and Tron. Typed end-to-end, sync and async, signed-webhook verifier included, idempotent writes by default.

Install

pip install opensettle

Requires Python 3.9+.

Quickstart

from opensettle import OpenSettle

os = OpenSettle(
    api_key="sk_test_…",         # or os.environ["OPENSETTLE_KEY"]
    workspace_id="ws_…",         # or os.environ["OPENSETTLE_WORKSPACE"]
)

customer = os.customers.create(email="ada@example.com")
invoice = os.invoices.create(
    customer_id=customer["id"],
    amount_minor=19_900,
    currency="USD",
    chain="base",
    token="USDC",
    line_items=[
        {"description": "Pro plan", "quantity": 1, "unit_amount_minor": 19_900}
    ],
)
os.invoices.send(invoice["id"])

Async

import asyncio
from opensettle import AsyncOpenSettle

async def main() -> None:
    async with AsyncOpenSettle(api_key="sk_test_…", workspace_id="ws_…") as os:
        customer = await os.customers.create(email="ada@example.com")
        print(customer["id"])

asyncio.run(main())

Webhooks

from opensettle import verify_webhook, WebhookVerificationError

@app.post("/webhooks/opensettle")
async def handler(request):
    raw = await request.body()
    try:
        event = verify_webhook(
            raw_body=raw,
            signature_header=request.headers.get("x-opensettle-signature"),
            secret=os.environ["WHSEC"],
        )
    except WebhookVerificationError as e:
        return Response(status=400, content=f"bad signature: {e.reason}")
    # event.data is the decoded JSON; event.timestamp is the signed epoch
    return Response(status=200)

Error handling

from opensettle import (
    OpenSettle,
    RateLimitError,
    SettlementError,
)

try:
    os.checkouts.create(...)
except RateLimitError as e:
    time.sleep(e.retry_after or 1)
    retry()
except SettlementError as e:
    if e.code == "insufficient_confirmations":
        wait_and_retry()

The full error hierarchy:

OpenSettleError
├── InvalidRequestError
├── InvalidStateTransitionError
├── AuthenticationError
├── ForbiddenError
├── NotFoundError
├── ConflictError
├── RateLimitError              # carries `retry_after: float | None`
├── SettlementError             # chain_reverted | insufficient_confirmations | signing_required
├── StepUpRequiredError         # aal_required
├── APIError                    # internal_error or forward-compat unknown codes
└── NetworkError                # transport-layer / timeout

Every error carries code, status, request_id, and param so you can quote the request ID in support tickets.

Configuration

os = OpenSettle(
    api_key="sk_test_…",
    workspace_id="ws_…",
    base_url="https://api.opensettle.io",   # default; override for self-host
    test_mode=None,                          # None | True | False env-assertion gate
    timeout=30.0,                            # seconds; default 30s
    max_network_retries=3,                   # 0 to disable retries
)

test_mode=True refuses sk_live_… keys; test_mode=False refuses sk_test_…. Leave None to accept either and let the API decide.

Resources

Resource Methods
customers list, retrieve, create, update, delete
products list, retrieve, create, update, list_prices, create_price, delete, delete_price
invoices list, retrieve, create, send, remind, void
payments list, retrieve, refund, refund_broadcast
subscriptions list, retrieve, create, pause, resume, cancel, change_plan
checkouts create, retrieve
webhook_endpoints list, retrieve, create, update, delete, rotate_secret, test

License

MIT — see LICENSE.

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

opensettle-0.1.0.tar.gz (36.9 kB view details)

Uploaded Source

Built Distribution

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

opensettle-0.1.0-py3-none-any.whl (26.2 kB view details)

Uploaded Python 3

File details

Details for the file opensettle-0.1.0.tar.gz.

File metadata

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

File hashes

Hashes for opensettle-0.1.0.tar.gz
Algorithm Hash digest
SHA256 043d0ec9f5e18cca9e53e417302789b2ecb62e401b6abfd257d40e768273b029
MD5 e5a07e6c12073b20158200ba28fc4cc2
BLAKE2b-256 95fc26aa40b8fe67b5631cc7be1fb97831c3f091754369962a713739304ba326

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensettle-0.1.0.tar.gz:

Publisher: publish.yml on OpenSettle/opensettle-sdk-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 opensettle-0.1.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for opensettle-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7f342d742884ff3d679fd27e2280c7360f8441fcfaf499bfaa4058dc026a7c18
MD5 8ee915dcf6b11248411917f446925ad0
BLAKE2b-256 75d09972f8f77d8d8263d35d2bcb6e9f641dd1a223a3b936d1e9970ec1899c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensettle-0.1.0-py3-none-any.whl:

Publisher: publish.yml on OpenSettle/opensettle-sdk-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