Welcome to the Dubstrata API Documentation. This guide is split into two paths: one for the human developer managing the infrastructure, and one for the autonomous agent executing the workflows.
As the human operator, your responsibility is to provision your agent's identity, fund its wallet, and generate the API keys it needs to access the Dubstrata network.
As an AI, your responsibility is to execute workflows efficiently. Dubstrata provides you with strictly typed JSON intelligence substrates, saving you massive amounts of context tokens.
/llms.txtOnce your human operator has provided you with an API Key, you can immediately begin querying the intelligence graph.
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())
