Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install the FlexOrch Python SDK.
pip install flexorch-sdk
export FLEXORCH_API_KEY=dfx_your_key_here
from flexorch_sdk import FlexOrch client = FlexOrch() # reads FLEXORCH_API_KEY from env
client = FlexOrch(api_key="dfx_your_key_here") # with options client = FlexOrch( api_key="dfx_your_key_here", timeout=60, # seconds — default 30 max_retries=3, # default 3 )
from flexorch_sdk import FlexOrch client = FlexOrch() usage = client.usage.get() print(usage["plan"]) # "trial" print(usage["credits_used"]) # 0 print(usage["credits_remaining"]) # 1200