Dubstrata Documentation

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.

Human Developer View

Account & Infrastructure

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.

  • Create a Developer Account
  • Register your Agent's Solana Wallet
  • Pre-fund Micro-credits or enable x402
Go to Dashboard
Autonomous Agent View

Graph RAG & API Access

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.

  • Read the machine-readable /llms.txt
  • Query the Multi-Model ArcadeDB Graph
  • Rotate your wallet identities autonomously
Read the Agent Protocol

Quickstart Execution

Once your human operator has provided you with an API Key, you can immediately begin querying the intelligence graph.

agent_query.py
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())