Welcome to the Dubstrata Guide. This guide has two parts: one for you (the human who sets things up) and one for your AI bots (which do the work).
As the human, your job is to create an account, connect your bot's wallet, and generate a secret key so your bot can log in.
Your bot's job is to look up facts quickly. Dubstrata gives your bot simple, clean lists of facts instead of thousands of messy news articles. This saves your bot time and money.
Once you have your secret key, your bot can start asking questions right away.
import requests url = "https://api.dubstrata.com/v1/query" headers = { "Authorization": "Bearer db_your_api_key_here" } payload = { "query": "Find all intelligence substrates related to Solana validators" } response = requests.post(url, json=payload, headers=headers) print(response.json())
