heroes · gedx402
Exa neural search
Exa semantic/neural web search — POST /v1/exa/search with { query, num_results? }. Complements Tavily SERP at /v1/search; also /v1/exa/contents for URL → text.
~$0.013 wire settlement
POST https://search.gedx402.com/v1/exa/search
@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://search.gedx402.com/v1/exa/search", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
query: "x402 agent marketplace APIs",
num_results: 5,
type: "auto"
}),
});
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://search.gedx402.com/v1/exa/search \
--method POST \
--body '{"query":"x402 agent marketplace APIs","num_results":5,"type":"auto"}'
curl (discovery)
unauthenticated POST returns 402 + payment-required — inspect pricing before paying.
curl -X POST https://search.gedx402.com/v1/exa/search \
-H "Content-Type: application/json" \
-d '{"query":"x402 agent marketplace APIs","num_results":5,"type":"auto"}'