Skip to main content
The Straddle Python SDK provides convenient access to the Straddle API from any Python application. The SDK includes type definitions and offers both synchronous and asynchronous clients powered by httpx.
The SDK supports Python 3.8+ and provides comprehensive type hints through TypedDict and Pydantic models.

Installation

Install the SDK using pip:
For development environments, we recommend using python-dotenv to manage your API keys:

Setup and Configuration

Import the SDK

Import the appropriate client based on your needs:

Initialize the Client

Create a new instance of the Straddle client:
Never hardcode your API key directly in your code. Use environment variables or a secure configuration management system.

Implementation Examples

For account customers (non-platform), the flow is simpler as the account context is inferred from the API key:

Key Features

Type Safety

Built-in type hints with TypedDict for requests and Pydantic models for responses, providing excellent IDE support and catch errors early.

Async Support

First-class async/await support through the AsyncStraddle client, perfect for high-performance applications.

Automatic Pagination

Built-in support for automatic pagination, making it easy to handle large result sets.

Error Handling

Comprehensive error types and helpful error messages for better debugging and error recovery.

Error Handling

The SDK provides specific exception types for different error cases:
Common error types include:
  • BadRequestError (400)
  • UnprocessableEntityError (422)
  • AuthenticationError (401)
  • PermissionDeniedError (403)
  • NotFoundError (404)
  • RateLimitError (429)
  • InternalServerError (>500)
Configure request timeouts:

SDK Requirements

Python Version

Python 3.8 or higher
For more detailed information about the SDK structure and usage, refer to our Pypi Package.