🚀 GLP1 Launch

Connect your MetaMask wallet to test the API endpoints

💳 Wallet Connection

⚠️ Deployment Note

Pay directly from your MetaMask wallet. When you call the paid endpoint, MetaMask will ask you to sign a $0.01 USDC payment authorization on Base network (Chain ID: 8453). It's a signature, not a transaction - the x402 payment network covers the gas.

Important: No private keys are stored or transmitted. You only sign a payment authorization in MetaMask; settlement happens on-chain via the x402 protocol.

📡 API Endpoints

GET /glp1/top-questions FREE

Returns a list of trending GLP-1 questions with basic information. No payment required.

GET /glp1/top-questions-paid $0.01 USD

Returns premium GLP-1 research briefs with detailed answers and cited sources with links. Requires payment of $0.01 on Base network.

⚡ Connect your MetaMask wallet to pay - you'll sign a $0.01 USDC authorization on Base (Chain ID: 8453).

⚡ 60-Second Quickstart (Developers & AI Agents)

1. Free call FREE

No wallet needed:

curl https://glp1launch-1.onrender.com/glp1/top-questions

2. Paid call $0.01 USD

Pay per call with USDC on Base via the x402 protocol:

npm install @x402/fetch @x402/evm viem
import { wrapFetchWithPaymentFromConfig } from "@x402/fetch";
import { ExactEvmScheme } from "@x402/evm";
import { privateKeyToAccount } from "viem/accounts";

const account = privateKeyToAccount("0xYourPrivateKey"); // wallet with USDC on Base
const fetchWithPayment = wrapFetchWithPaymentFromConfig(fetch, {
  schemes: [{ network: "eip155:8453", client: new ExactEvmScheme(account) }],
});

const res = await fetchWithPayment(
  "https://glp1launch-1.onrender.com/glp1/top-questions-paid"
);
const data = await res.json();

All endpoints

Free: GET /glp1/top-questions · GET /supplements/interactions · GET /peptides/longevity
Paid ($0.01 each via x402): GET /glp1/top-questions-paid · GET /supplements/interactions-paid · GET /peptides/longevity-paid
Usage stats: GET /stats (aggregate counts from pseudonymous browser measurement - no queries, wallets, IPs, or user agents stored)
Machine-readable docs: openapi.json · ai.txt

Premium answers cite named sources with links. trending_score is an editorial priority score (0-100) set by the maintainers to rank question importance - it is not derived from live trend or traffic data.