heroes · gedx402

RAG answer

Single-hop cited answer — one payment indexes URL(s), hybrid search, synthesizes via chat/fast, and returns session_token with prepaid follow-up query credits (default 4 after the answer).

$0.625 wire settlement

POST https://rag.gedx402.com/v1/aisearch/outcome/answer

@x402/fetch (TypeScript)

standard x402 client — fund USDC on Base, set PRIVATE_KEY. integrator quickstart

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { ExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const signer = privateKeyToAccount(process.env.PRIVATE_KEY as `0x${string}`);
const client = new x402Client();
client.register("eip155:*", new ExactEvmScheme(signer));
const fetchWithPayment = wrapFetchWithPayment(fetch, client);

const res = await fetchWithPayment("https://rag.gedx402.com/v1/aisearch/outcome/answer", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    url: "https://example.com/docs",
    question: "How do I configure AI Search?",
    budget: {
      max_queries: 5
    }
  }),
});
const data = await res.json();

awal (agent convenience)

Coinbase Agentic Wallet CLI — no private key in code. external payer guide

npx awal@2.12.0 x402 pay \
  --url https://rag.gedx402.com/v1/aisearch/outcome/answer \
  --method POST \
  --body '{"url":"https://example.com/docs","question":"How do I configure AI Search?","budget":{"max_queries":5}}'

curl (discovery)

unauthenticated POST returns 402 + payment-required — inspect pricing before paying.

curl -X POST https://rag.gedx402.com/v1/aisearch/outcome/answer \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com/docs","question":"How do I configure AI Search?","budget":{"max_queries":5}}'