nodus_pricing
View pricing details and access instructions for AI-powered Oracle signals used in prediction markets. Pay $1 USDC to obtain a session token for querying market signals.
Instructions
View NodusAI pricing and how to get started. Pay $1 USDC on nodusai.app → get a session token → use it for 3 Oracle signal queries.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/index.js:38-63 (handler)The handler function `nodusPricing` returns the pricing information and usage instructions for the NodusAI Oracle tool.
export async function nodusPricing() { return ok({ message: "NodusAI Oracle — Pricing & How to Connect", pricing: { cost: "$1 USDC = 3 Oracle signal queries", pricePerQuery: "$0.33 USDC", networks: ["Base", "Ethereum", "Avalanche"], token: "USDC", }, howToGetStarted: [ "1. Visit https://nodusai.app", "2. Connect your wallet (Base, Ethereum, or Avalanche)", "3. Paste a Polymarket or Kalshi market URL", "4. (Optional) Add your desired outcome", "5. Pay $1 USDC and confirm the transaction", "6. Copy your session token", "7. Use nodus_get_signal here with your session token", ], sessionDetails: { queriesPerPayment: 3, validity: "24 hours", note: "One session token = 3 queries. After 3 queries, visit nodusai.app to pay again.", }, paymentUrl: "https://nodusai.app", }); }