Getting Started
Quickstart
Get your first research query running in under 30 seconds. No API keys, no signup — just a Solana wallet and a question.
Option 1 — CLI (one command)
Run a research query directly from your terminal. Nothing to install permanently — npx handles it.
Terminal
npx drip-agent research anthropic.com
That's it. DRIP will collect company data, analyze it, and return a structured research brief — industry, funding, tech stack, key people, and more.
Option 2 — Web Agent
Open the agent in your browser and start a conversation:
URL
https://drip.surf/agent
Connect your Solana wallet, type a query like Research anthropic.com, and the agent handles the rest. Payments happen automatically via x402 micropayments — usually around $0.05 per query.
Option 3 — SDK
For programmatic access, install the SDK and call endpoints directly:
Install
npm install @drip/sdk
example.ts
import { Drip } from "@drip/sdk";
const drip = new Drip({ wallet: "<your-solana-wallet>" });
const result = await drip.research("anthropic.com");
console.log(result.organization.name); // "Anthropic"
console.log(result.organization.industry); // "Artificial Intelligence"✅No API key required. DRIP uses the x402 protocol — your wallet pays per request, and payment proof is attached automatically.
What to Try Next
- Person enrichment —
npx drip-agent enrich dario@anthropic.com - Market data —
npx drip-agent research solana --market - Social intelligence — ask the web agent “What's the sentiment on Solana?”