Skip to main content

Coming Soon

The official Python SDK for KillB is currently in development and will be available soon.
Want early access? Contact us at [email protected]

Planned Features

Type Hints

Full type hints support for modern Python

Async/Await

AsyncIO support for concurrent operations

Pydantic Models

Validated data models using Pydantic

Auto Retry

Automatic retry with exponential backoff

Expected API

from killb import KillB

# Initialize
killb = KillB(
    email="[email protected]",
    password="your-password",
    environment="sandbox"
)

# Create user
user = killb.users.create({
    "type": "PERSON",
    "data": {
        "firstName": "Juan",
        "lastName": "García",
        # ...
    }
})

# Create ramp
ramp = killb.ramps.create({
    "quotationId": quote.id,
    "userId": user.id,
    "accountId": wallet.id
})

print(f"Ramp created: {ramp.id}")

Use REST API Now

While the SDK is in development, use our REST API with Python:

REST API Guide

View REST API documentation

Get Notified

Sign up to be notified when the Python SDK launches:

Join Waitlist

Get early access to Python SDK