Request Founder AccessApplications are open for a limited group of Founder Members

Using darwintIQ data in Python, TradingView, or Excel

darwintIQ provides clean, structured JSON that’s easy to consume in any tool.

Python Example

import requests

headers = {
  "Authorization": "Bearer YOUR_TOKEN"
}
res = requests.get("https://darwintiq.com/api/traders?symbol=XAUUSD", headers=headers)
data = res.json()

for cluster in data:
    print(cluster["type"], cluster["topTraders"])