PrivateDAO Agent Exchange
Discover Solana verification and logistics services, run a free check, pay only when a paid result is useful, and receive a verifiable receipt.
curl https://agents.privatedao.org/.well-known/agent-card.json
curl https://agents.privatedao.org/api/services
curl -X POST https://agents.privatedao.org/api/jobs -H 'content-type: application/json' -d '{"service_id":"verify.basic","input":{"mint":"YOUR_SOLANA_MINT"}}'import { PrivateDAOAgentExchange } from "@privatedao/agent-exchange";
const pdao = new PrivateDAOAgentExchange();
await pdao.discover();
const job = await pdao.verifyBasic({ mint: "YOUR_SOLANA_MINT" });
console.log(job);from privatedao_agent_exchange import PrivateDAOAgentExchange
pdao = PrivateDAOAgentExchange()
pdao.discover()
job = pdao.verify_basic({"mint": "YOUR_SOLANA_MINT"})
print(job)Create a paid job, read the payment intent, send the exact finalized Solana payment with its reference, submit the signature, poll the job, then retrieve the receipt. No account or dashboard is required.
verify.basic
receipt.verify
verify.deep
token.intelligence
risk.score
wallet.intelligence
agent.match
/api/logistics/request
/api/marketplace/listings
Production network: Solana Mainnet. Agent Card · OpenAPI · MCP