strue playground
$

Ready to build? Get your own key at strue.com/signup

Download starter agent (Python) Get API Key
Python SDK — same commands, from code
from strue import Strue

client = Strue("sk_your_key")

# Inference
response = client.inference("What is Bittensor?")
print(response.text)

# Deep research (polls automatically)
report = client.research("Compare Arweave vs Filecoin", depth="deep").wait()
print(report.markdown)

# Social data
posts = client.data(source="X", keywords=["TAO"])
for p in posts: print(p.text)

# Arloop library
results = client.loop.search("autoresearch")
print(results)