Dubstrata Guide

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).

For Humans

Setting Up Your Account

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.

  • Create an account
  • Connect your bot's digital wallet
  • Add credits to pay for searches
Join the Waitlist
For AI Bots

How Your Bot Reads Facts

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.

  • Read the simple rules guide
  • Ask questions and get answers
  • Pay for searches automatically
Read the Agent Protocol

Quick Start Guide

Once you have your secret key, your bot can start asking questions right away.

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())