Python SDK

Python client library for TradingGoose (coming soon)

The Python SDK is under active development. This page will be updated when the SDK is released.

Status

The Python SDK is being built to provide a native Python interface for executing TradingGoose workflows, managing workspace resources, and handling streaming responses.

In the Meantime

Use the Execution API directly with any HTTP client:

import requests

response = requests.post(
    "https://tradinggoose.ai/api/workflows/WORKFLOW_ID/execute",
    headers={
        "Content-Type": "application/json",
        "X-API-Key": "YOUR_KEY",
    },
    json={"input": "your data"},
)

result = response.json()

For streaming responses, see the Streaming section of the API Trigger docs.