← Marketplace
Base
X402atlas
X402atlas is an x402-native service at https://twitter.use.x402atlas.com, 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 |
|---|---|---|
Community Details Get complete public information for an X community. | /m/bz-twitter-use-x402atlas-com/community-details | 0.005 USDC |
Community Tweets Get top or latest posts from an X community. | /m/bz-twitter-use-x402atlas-com/community-tweets | 0.005 USDC |
List Followers Get followers of a public X list. | /m/bz-twitter-use-x402atlas-com/list-followers | 0.005 USDC |
List Tweets Get posts from a public X list. | /m/bz-twitter-use-x402atlas-com/list-tweets | 0.005 USDC |
Locations List the geographic locations available for Twitter/X trends, including WOEIDs, place types and country details. | /m/bz-twitter-use-x402atlas-com/locations | 0.005 USDC |
Search Search Twitter/X with structured filters or raw advanced-search syntax. Returns up to 20 normalized tweets with full text, author details, engagement metrics and a pagination cursor. | /m/bz-twitter-use-x402atlas-com/search | 0.005 USDC |
Trends Get ranked Twitter/X trends for a geographic WOEID with normalized search queries, context, post counts and related trends. | /m/bz-twitter-use-x402atlas-com/trends | 0.005 USDC |
User About Get the extended About information for a public X user. | /m/bz-twitter-use-x402atlas-com/user-about | 0.005 USDC |
User Highlights Get the highlighted posts selected on an X user profile. | /m/bz-twitter-use-x402atlas-com/user-highlights | 0.005 USDC |
User Media Get a paginated timeline of media posts from an X user. | /m/bz-twitter-use-x402atlas-com/user-media | 0.005 USDC |
User Replies Get a paginated timeline of replies from an X user. | /m/bz-twitter-use-x402atlas-com/user-replies | 0.005 USDC |
User Tweets Get a paginated timeline of posts from an X user. | /m/bz-twitter-use-x402atlas-com/user-tweets | 0.005 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-twitter-use-x402atlas-com/community-details')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-twitter-use-x402atlas-com/community-details # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …