⚡ x402 · USDC on Base · No API key

Pay 1¢. Get an answer.

NEX Agent Co. runs 7 Ollama models on an M5 Max 128GB. Any service below is one x402 call away. Pay in USDC. Get a result in 2-5 seconds. No signup, no API key, no rate limit games.

Services

Each service is one HTTP call. Pay with USDC. Get JSON back. Built for agents but humans can use it too.

📝$0.005/call

Summarize

Summarize any text, PR, article, or document into a 3-sentence digest. Good for triage.

qwen3.8-27b · 1M context
→ try it
🌐$0.005/call

Translate

Translate any text to any of 20 languages. Optimized for technical content.

qwen3.8-27b · 20 languages
→ try it
🔐$0.05/call

Security audit

Paste a code file. Get a security review: vulns, attack surface, severity-rated findings.

devstral-small-2 (security specialist)
→ try it
🔍$0.02/call

Code review

Paste a PR diff. Get a structured review: bugs, style, perf, suggested patches.

qwen3-coder:30b · 70.6% SWE-bench
→ try it
$0.003/call

Headlines

Generate 5 SEO-friendly headlines for any content. With clickbait-vs-earnest scoring.

qwen3.8-27b
→ try it
😊$0.001/call

Sentiment

Score any text from -1 (negative) to +1 (positive). Plus aspect-level breakdowns.

qwen3.8-27b · 6 emotions
→ try it
🏷️$0.002/call

Classify

Classify any text into categories you define. Multi-label supported.

qwen3.8-27b · custom labels
→ try it
🔍$0.01/call

Extract

Extract structured data from any text: entities, dates, amounts, contacts, JSON schema.

qwen3-coder:30b · JSON output
→ try it
🔑$0.002/call

Keywords

Extract 10 SEO keywords + 5 long-tail phrases from any content. With search volume hints.

qwen3.8-27b
→ try it
📚$0.10/call

Research brief

Quick research brief on any topic. 3-5 paragraphs, sources flagged, current as of today.

qwen3.6-35b (research)
→ try it
🎯$0.50/call

Competitor analysis

Tell me a company + 3 competitors. Get positioning, pricing, moat, weaknesses.

qwen3.6-35b · 1-page PDF
→ try it
✍️$0.20/call

Blog post

SEO-optimised 1000-word blog post on any topic. Markdown output, internal links, CTA.

qwen3-coder-next-80b (long-form)
→ try it

Playground no signup · pay per call

Try any service in 30 seconds. For human use, you'll need a USDC wallet on Base. For agents, hit the API directly.

Summarize

Paste any text, get a 3-sentence summary.

Output: $0.005 USDC
Output will appear here.

First call free. After that, your wallet signs the x402 challenge, pays 0.1-1.2¢ in USDC, gets the answer. For agents, see API docs below.

For agents

One HTTP call. x402 paywall handled automatically. CORS-enabled.

Base URL

https://charm-preparing-avon-ips.trycloudflare.com

All paid endpoints (x402 USDC on Base)

MethodEndpointPriceUse
POST/v1/chat$0.001General chat
POST/v1/code$0.005Code generation/review (qwen3-coder)
POST/v1/code-pro$0.012Premium code (qwen3-coder-next 80B MoE)
POST/v1/vision$0.010Image captioning (qwen2.5vl)
POST/v1/embed$0.0001Embeddings (nomic)
POST/v1/crypto-price$0.0001Real-time crypto prices (CoinGecko)
POST/v1/weather$0.0001Weather (Open-Meteo)
POST/v1/geo$0.0001IP geolocation
POST/v1/fx$0.0001Currency exchange rates
POST/v1/whois$0.0002Domain WHOIS lookup

Example: x402 client in 6 lines

npm install x402-fetch ethers

import { wrapFetch } from 'x402-fetch';
import { Wallet } from 'ethers';

const wallet = new Wallet(process.env.PRIVATE_KEY);
const fetch = wrapFetch(globalThis.fetch, wallet);

const r = await fetch('https://charm-preparing-avon-ips.trycloudflare.com/v1/code', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ prompt: 'Write a Python function to compute Welford mean' })
});
console.log(await r.json());

// The library handles the 402 → pay → retry automatically.
// You pay 0.005 USDC. NEX's server gets it instantly.

Free tier (for testing)

All paid endpoints have a free mirror at /v1/free/* (30 calls/min/IP, no payment). Same models, same responses, just rate-limited. Perfect for evaluation.

Manifest

The x402 manifest is auto-discoverable:

curl https://charm-preparing-avon-ips.trycloudflare.com/.well-known/x402.json

Subscriptions for humans who want monthly billing

If you want unlimited calls and a monthly invoice, pick a subscription. Pay with PayPal, get access within 1 hour.

💳 Pay with PayPal · ⛓️ Or pay with USDC on Base to 0xf47bdf9…a5726 (preferred, lower fees) · Email mavis@nexventure.com after payment for instant activation

How it works

3 steps. 2-5 seconds. No humans.

01
Call any endpoint
Your agent or browser makes a POST request. The body is your prompt. No auth header, no API key.
02
Get a 402 challenge
The server returns HTTP 402 with the exact payment address (0xf47bdf9…a5726 on Base) and amount (0.001-0.012 USDC). Your wallet signs.
03
Retry with payment proof
Resend the same request with the X-PAYMENT header containing the signed EIP-3009 transfer. Server validates, settles, and returns the result.