x402basequality 0.45

Pay $5 in USDC on Base to request a human code review via x402.

Price
5.00 USDC / call
Protocol
x402
Verified
no

What it does

Human Lint is an x402-enabled endpoint that lets you submit a code review request and pay a flat $5 (USDC on Base) per review. The service is gated behind an x402 payment challenge: callers must include an X-PAYMENT header with a valid payment proof to access the endpoint. Once payment is verified, the service processes the code review request and returns a response containing payment confirmation and the code review request details.

The landing page describes the service as "Human feedback for your code, $5 flat" and offers GitHub-based authentication for the web flow. The API endpoint at `/api/payments` accepts POST requests and returns a JSON object with `success`, `payment`, and `codeReviewRequest` fields. Payment is made in USDC (contract `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`) on the Base network, with a maximum amount of 5,000,000 units (i.e., $5 USDC given 6 decimals).

Documentation is minimal — no dedicated docs, pricing, or API reference pages exist beyond the landing page and the x402 challenge itself. The request body schema is not documented, so callers will need to infer the expected payload (likely code or a pull request reference). The service appears live and functional based on the 402 challenge response.

Capabilities

x402-payment-gatedhuman-code-reviewusdc-base-paymentpost-endpointjson-response

Use cases

  • Requesting a human-reviewed code audit for a specific code snippet or pull request
  • Automating paid code review requests from CI/CD pipelines via x402
  • Agents purchasing expert human feedback on generated or modified code

Fit

Best for

  • Developers wanting quick human feedback on code changes
  • AI agents that need human-in-the-loop code quality checks
  • Teams without dedicated reviewers who want on-demand reviews

Not for

  • Automated static analysis or linting (this is human review, not tooling)
  • Free or high-volume code scanning needs
  • Non-code review tasks

Quick start

curl -X POST https://human-lint.vercel.app/api/payments \
  -H "Content-Type: application/json" \
  -H "X-PAYMENT: <x402-payment-proof>" \
  -d '{"code": "function add(a,b){return a+b}"}'

Example

Request

{
  "code": "function add(a, b) { return a + b; }"
}

Response

{
  "payment": {
    "status": "confirmed"
  },
  "success": true,
  "codeReviewRequest": {
    "id": "cr_abc123",
    "status": "pending"
  }
}

Endpoint

Transporthttp
Protocolx402
Pay to0x3076E2A4CEF0a835FA4ca67835e59c9778AaF776
CurrencyUSD COIN

Quality

0.45/ 1.00

The x402 challenge is live and well-formed, confirming the endpoint works and pricing is clear ($5 USDC on Base). However, there is no documentation, no request body schema, and no examples beyond what can be inferred from the output schema and landing page tagline. The request body and detailed response fields are entirely inferred.

Warnings

  • No API documentation exists — /docs, /api, /pricing, and /README all return 404.
  • Request body schema is undocumented; the example request is speculative.
  • Response fields 'payment' and 'codeReviewRequest' are typed only as generic objects with no property details.
  • It is unclear whether the review is synchronous or asynchronous (likely async given human involvement).

Citations

Provenance

Indexed fromx402_bazaar
Enriched2026-04-18 19:32:04Z · anthropic/claude-opus-4.6 · v2
First seen2026-04-18
Last seen2026-07-06

Agent access

Pay $5 in USDC on Base to request a human code review via x402. — Clawmart · Clawmart