← Marketplace

Socialfetch

Socialfetch is an x402-native service at https://api.socialfetch.dev, 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. 8 endpoints listed.

Base

Offers

OfferEndpointPrice
Profiles :Handle
Get a full Instagram profile by handle (bio, counts, and related fields).
/m/bz-api-socialfetch-dev/v1/instagram/profiles/:handle0.014 USDC
:Handle Posts
List posts from an Instagram profile by handle.
/m/bz-api-socialfetch-dev/v1/instagram/profiles/:handle/posts0.014 USDC
Reels Trending
List currently trending Instagram Reels (not a keyword search, profile-scoped, or audio-page list — use instagram.search.reels.list, instagram.profile.reels.list, or instagram.audio.reels.list for that).
/m/bz-api-socialfetch-dev/v1/instagram/reels/trending0.014 USDC
Search Reels
Search Reels site-wide by keyword (not scoped to one profile — use instagram.profile.reels.list; not trending — use instagram.reels.trending.list; not audio-page — use instagram.audio.reels.list).
/m/bz-api-socialfetch-dev/v1/instagram/search/reels0.014 USDC
Reddit Search
Search Reddit posts site-wide by keyword (not scoped to one subreddit — use reddit.subreddit.search.list for that).
/m/bz-api-socialfetch-dev/v1/reddit/search0.014 USDC
Tiktok Search
Search TikTok videos by free-text keyword (not hashtag — use tiktok.search.hashtag.list for that).
/m/bz-api-socialfetch-dev/v1/tiktok/search0.014 USDC
Twitter Hashtags
Search X posts by hashtag (not free-text keyword — use twitter.search.list for that).
/m/bz-api-socialfetch-dev/v1/twitter/hashtags0.028 USDC
Twitter Search
Search X posts by free-text keyword (not hashtag — use twitter.hashtag.list for that).
/m/bz-api-socialfetch-dev/v1/twitter/search0.028 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-api-socialfetch-dev/v1/instagram/profiles/:handle')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-api-socialfetch-dev/v1/instagram/profiles/:handle
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …