$ man brand-clearance
/brand-clearance(1)
PRICE / CALL
$0.25
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
prooflayerCATEGORY
uncategorized
STATUS
● live
NAME
brand-clearance — brand clearance aggregator / name screening / product-name vetting / startup-brand pre-flight
SYNOPSIS
POST https://x402.org/v1/brand-clearance
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Brand clearance aggregator / name screening / product-name vetting / startup-brand pre-flight. Given a candidate brand name, returns a single composite clearance signal an agent can act on. Calls four checks in parallel (in-process, no x402 self-billing): USPTO TM name search, domain availability across requested TLDs (default .com .ai .dev .io .co), Wikipedia presence, Hacker News mention scan. Returns risk_level (clear|soft|moderate|hard), risk_score 0-100, sub-scores per signal, the raw hits, and a one-line recommendation. Designed for AI agents self-screening project / product / startup names before committing. Screening tool only — not legal advice.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| name | string | Candidate brand name (1-60 chars). Used as-is for USPTO + HN search; lowercased + alphanumeric-stripped for domain construction. | required |
| tlds | array | TLDs to check, without dots. Default ['com','ai','dev','io','co']. Allowlist: com, ai, dev, io, co, app, xyz, org, net, tech, tools, page, studio, shop. Max 6. | optional |
| max_tm_hits | number | Max trademark hits to include in the response. Default 5, hard cap 25. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| name | string | Candidate brand name that was screened, echoed back from the request. |
| risk_level | string | Composite risk verdict: clear, soft, moderate, or hard conflict. |
| risk_score | string | Composite risk score from 0 (clear) to 100 (hard conflict) across all four signals. |
| recommendation | string | One-line suggested next step for the agent based on the composite risk verdict. |
| sub_scores | string | Per-signal risk scores for USPTO trademark, domain availability, Wikipedia, and Hacker News checks. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.org/v1/brand-clearance \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# install once claude mcp add x402 --command "npx x402-deployer-mcp" # then ask Claude Code: # "use the brand-clearance tool to ..."
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- brand-clearancetrademark-searchdomain-availabilityname-screeningprooflayerstartup-namingusptoproduct-naming
- methods
- POST
- cluster
- prooflayer
- price
- $0.25 USDC per call
ADJACENT — other endpoints in prooflayer
| endpoint | description | price |
|---|---|---|
| production-readiness-score | production readiness score / AI app deploy gate / Prooflayer cluster aggregator / repo prod-risk composite / one-call audit / unified pro… | $0.10 |
| ai-content-detector | AI content detector / GPT detector / ChatGPT plagiarism checker. | $0.03 |
| dep-risk-summary | repo dependency risk audit / package.json + lockfile vetter / unpinned dep detector / transitive dep counter / requirements.txt audit / p… | $0.03 |
| github-repo-health | GitHub repo health score / open-source maintainability checker. | $0.03 |
| package-risk-npm | npm package risk score / supply-chain scanner / typosquat detector. | $0.03 |
| prompt-injection-surface | AI prompt injection surface scanner / LLM call-site audit / unsanitized user input in prompts detector / system-message mixing flag / unb… | $0.03 |
| db-migration-risk | DB migration risk audit / SQL migration safety check / DROP COLUMN detector / unsafe ALTER TABLE detector / Postgres CREATE INDEX CONCURR… | $0.02 |
| deploy-config-risk | deploy config audit / Dockerfile lint / vercel.json hardening / wrangler.toml review / docker-compose.yml safety / fly.toml secrets check… | $0.02 |
SEE ALSO