← Marketplace
Base
Glim
Glim is an x402-native service at https://glim.sh, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 12 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Amazon Search Search Amazon by keyword or browse bestsellers by category slug | /m/bz-glim-sh/api/v1/amazon/search | 0.005 USDC |
Github Get Fetch GitHub data from a ref (repo + README, files, commits, PRs, issues, discussions) | /m/bz-glim-sh/api/v1/github/get | 0.002 USDC |
Github Search Search GitHub repositories, conversations, and discussions | /m/bz-glim-sh/api/v1/github/search | 0.002 USDC |
Chat Completions LLM chat completion (OpenAI-compatible, streaming supported) | /m/bz-glim-sh/api/v1/inference/v1/chat/completions | 0.0054 USDC |
Reddit Get Fetch a Reddit post, subreddit, or user by ref | /m/bz-glim-sh/api/v1/reddit/get | 0.005 USDC |
Telegram Get Fetch a public Telegram channel's posts (with optional in-channel search and history pagination) or a single post with its discussion comments | /m/bz-glim-sh/api/v1/telegram/get | 0.005 USDC |
Twitter Get Fetch a tweet (with thread context) by URL/id or a user (with recent tweets) from one URL | /m/bz-glim-sh/api/v1/twitter/get | 0.005 USDC |
Twitter Search Search tweets with advanced operators (recommended). Body param is `query` (not q), e.g. {"query":"from:elonmusk AI min_faves:100"} | /m/bz-glim-sh/api/v1/twitter/search | 0.005 USDC |
:Ref Tweets A user's recent tweets, ~20/page. Body: optional cursor + include_replies only | /m/bz-glim-sh/api/v1/twitter/users/:ref/tweets | 0.004 USDC |
Web Fetch Fetch a web page and extract clean content | /m/bz-glim-sh/api/v1/web/fetch | 0.002 USDC |
Web Search Web search powered by Exa | /m/bz-glim-sh/api/v1/web/search | 0.01 USDC |
Youtube Get Fetch a YouTube transcript from a video URL or 11-char id (video_id, also accepted as ref or url); returns a presigned download URL to the transcript | /m/bz-glim-sh/api/v1/youtube/get | 0.01 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-glim-sh/api/v1/amazon/search')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-glim-sh/api/v1/amazon/search # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …