← Marketplace
Base
Workers
Workers is an x402-native service at https://nfl-form-x402.owenlvll.workers.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. 7 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
History Use when you need the complete NFL team form dataset 2016-2025 as files for local analysis, model training or a one-time bulk download: one zip with team state (4,320 team-weeks, 44 attributes and 7 counts each), game pairings (2,004 regular-season games, home and away form side by side), weekly and pooled percentile ranks, plus schema.json and README.md. Parquet, JSON, Markdown. Every number is f | /m/bz-nfl-form-x402-owenlvll-workers-dev/history | 40 USDC |
:Home :Away Use when you need opponent strength for one NFL game in percentiles: both teams' /team-rank rows, 44 attributes each with a weekly percentile (vs the 32 teams that week) and a pooled percentile (vs every team-week 2016-2025), 1.0 best (two style measures left raw). Line up the home offense against the away defense: pass yards per play, 20+ yard passes, third down, red zone, touchdowns per drive. F | /m/bz-nfl-form-x402-owenlvll-workers-dev/pairing-rank/:season/:week/:home/:away | 0.4 USDC |
:Home :Away Use when you need matchup context for one NFL game: both teams' form entering that week, to compare an offense with the defense it faces. Home_ and away_ copies of the 44 attributes (passing, rushing, third down, red zone, field position, score state, penalties, touchdowns per drive, pass share), 7 counts and neutral_site. Form is up to each team's last 6 games before that week, never that week's | /m/bz-nfl-form-x402-owenlvll-workers-dev/pairing/:season/:week/:home/:away | 0.25 USDC |
Season :Season Use when you need a whole NFL season of matchups with both teams' form entering each week, in one response: every regular-season week from week 5 (13 or 14 weeks) as /slate rows, 44 attributes and 7 counts per team per game plus neutral_site. For backfilling a season or building a season-long dataset without one call per week; join to game results you hold elsewhere, scores are not included. Form | /m/bz-nfl-form-x402-owenlvll-workers-dev/season/:season | 8 USDC |
:Season :Week Use when you need every NFL game of one regular-season week in a single call, each with both teams' form entering that week: the same home_/away_ rows /pairing returns (44 attributes and 7 counts per team, neutral_site per game) for all 13 to 16 games. Builds a full week of matchups at once instead of one pairing call per game. Form is up to each team's last 6 games before that week, never that we | /m/bz-nfl-form-x402-owenlvll-workers-dev/slate/:season/:week | 1 USDC |
:Week :Team Use when you need where one NFL team stands relative to the league entering a week. Each of the 44 attributes (passing, rushing, third down, red zone, penalties, touchdowns per drive) carries its value and two percentiles: pct_week against the 32 teams that week, pct_pooled against all 4,320 team-weeks 2016-2025. 1.0 is best for offense and defense; two style measures (time tied, pass share) stay | /m/bz-nfl-form-x402-owenlvll-workers-dev/team-rank/:season/:week/:team | 0.25 USDC |
:Week :Team Use when you need one NFL team's recent form entering a regular-season week: how it played over up to its last 6 games before that week, never that week's game. 44 attributes for offense and defense: passing and rushing yards per play, explosive plays (20+ yard passes, 10+ yard runs), sack, interception and fumble rates, third-down conversion, red-zone TD rate, field position, field goals, time le | /m/bz-nfl-form-x402-owenlvll-workers-dev/team/:season/:week/:team | 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-nfl-form-x402-owenlvll-workers-dev/history')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-nfl-form-x402-owenlvll-workers-dev/history # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …