← Marketplace

Theaslangroupllc

Theaslangroupllc is an x402-native service at https://gridpulse.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. 3 endpoints listed.

Base

Offers

OfferEndpointPrice
Energy Carbon Intensity
Live grid carbon intensity, deterministic. Answers "how clean is the grid right now", "gCO2 per kWh in Germany", "cleanest hour to run a job today". Current intensity + forward curve (to 48h) + cleanest and dirtiest slots, from NESO (GB national + 14 DNO regions) and energy-charts/Fraunhofer ISE (DE FR NL BE AT ES IT NO). No LLM, no key. Pair with /api/energy/compute-window for full job scheduling
/m/bz-gridpulse-theaslangroupllc-com/api/energy/carbon-intensity0.01 USDC
Energy Compute Window
Carbon- and cost-aware compute scheduling. Given a region, job length and load, returns the optimal window in the next 48h to run it, with kg CO2 and EUR saved versus running now. Deterministic — computed from the official NESO (GB) and Fraunhofer ISE (EU) forward curves, no model guessing. Honours x-ealna-carbon-max / x-grove-carbon-max carbon budgets.
/m/bz-gridpulse-theaslangroupllc-com/api/energy/compute-window0.25 USDC
Energy Natural Gas
Natural gas price and market intelligence — Henry Hub spot prices, storage levels, and a 90-day price outlook. For energy-trader and energy agents.
/m/bz-gridpulse-theaslangroupllc-com/api/energy/natural-gas0.08 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-gridpulse-theaslangroupllc-com/api/energy/carbon-intensity')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-gridpulse-theaslangroupllc-com/api/energy/carbon-intensity
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …