← Marketplace
Base
Theaslangroupllc
Theaslangroupllc is an x402-native service at https://macropulse.theaslangroupllc.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 |
|---|---|---|
Api Calendar Weekly high-impact economic calendar for FX and macro agents — central-bank decisions, NFP/CPI/GDP/PCE releases, with expected market impact and the currency pairs each event tends to move. | /m/bz-macropulse-theaslangroupllc-com/api/calendar | 0.1 USDC |
Api Commodities Pulse Commodities brief for macro and FX agents — gold, silver, WTI/Brent crude, natural gas and copper, with the cross-asset read into commodity-linked currencies (CAD, AUD, NOK). | /m/bz-macropulse-theaslangroupllc-com/api/commodities-pulse | 0.1 USDC |
Api Cot CFTC Commitments of Traders positioning, parsed from the official dataset. No LLM. Answers "are hedge funds long S&P futures", "speculator positioning EUR/USD", "managed money net corn". 21 markets in 4 groups: fx (7 CME pairs), commodities (gold, WTI), grains (corn, wheat, soy complex, natgas managed-money), financials (equity index + Treasury leveraged-fund TFF). Net positions, week-over-week de | /m/bz-macropulse-theaslangroupllc-com/api/cot | 0.02 USDC |
Api Crypto Pulse Crypto market context for macro and multi-asset agents — BTC, ETH and majors with the Fear and Greed read and the risk-on/risk-off signal that ties crypto to broader macro flows. | /m/bz-macropulse-theaslangroupllc-com/api/crypto-pulse | 0.05 USDC |
Api Eia Inventory Weekly EIA petroleum inventory intelligence for energy and macro agents — crude, gasoline and distillate builds and draws versus expectations, with the oil-price and CAD/NOK implications. | /m/bz-macropulse-theaslangroupllc-com/api/eia-inventory | 0.1 USDC |
Api Intermarket Cross-asset intermarket synthesis for macro agents — bond yields, equities, commodities and FX read together to surface the dominant regime and the divergences that tend to lead price. | /m/bz-macropulse-theaslangroupllc-com/api/intermarket | 0.15 USDC |
Macro Bls Series Official US labor statistics by series id, deterministic. Answers "what is US CPI/unemployment/wage growth right now and vs a year ago". Up to 5 BLS series per call — by alias (cpi, cpi-core, unemployment, nonfarm-payrolls, wages, job-openings, eci, ppi) or any raw BLS series id. Returns latest value, same-period year-ago value, computed YoY change and percent, and the last 13 observations, straig | /m/bz-macropulse-theaslangroupllc-com/api/macro/bls-series | 0.02 USDC |
Macro Us Official US macro data read straight from Chainlink contracts. No LLM, no API key. Answers "what is US GDP growth", "current US inflation PCE", "what is SOFR today", "official US economic data". 7 series: real GDP level+growth, PCE index+inflation, real final sales, SOFR. Six are BEA (Dept of Commerce) on Base, SOFR is NY Fed on Ethereum - we assemble both chains. Each value ships its contract + r | /m/bz-macropulse-theaslangroupllc-com/api/macro/us | 0.01 USDC |
Market Is Open Is the stock market open right now? Deterministic market-status and trading-hours for the major global exchanges — NYSE, NASDAQ, LSE, Xetra, Euronext, TSE/JPX, HKEX, SSE, ASX, TSX, SIX, NSE/BSE. Returns is_open plus why it is shut (weekend, holiday, lunch break, pre/after-hours), the exchange local time, and the next open and close as ISO timestamps. Pass ?at= for any past or future moment. Zero e | /m/bz-macropulse-theaslangroupllc-com/api/market/is-open | 0.005 USDC |
Api Regime Macro regime classifier for multi-asset agents — labels the current environment (risk-on/off, reflation, stagflation, tightening) and its directional implications for FX, rates and equities. | /m/bz-macropulse-theaslangroupllc-com/api/regime | 0.1 USDC |
Api Sentiment Real-time directional sentiment for any forex pair or gold — retail crowd positioning, COT institutional alignment, and a clear contrarian bias call. Built for FX trading and advisor agents. | /m/bz-macropulse-theaslangroupllc-com/api/sentiment | 0.05 USDC |
Api Session Brief Real-time macro session brief for FX agents — the overnight drivers, key levels, scheduled risk and the directional bias heading into the London and New York sessions. | /m/bz-macropulse-theaslangroupllc-com/api/session-brief | 0.1 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-macropulse-theaslangroupllc-com/api/calendar')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-macropulse-theaslangroupllc-com/api/calendar # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …