# AgentUtility Company Name Score

> AgentUtility Company Name Score is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Scores and grades a company name for quality, brandability, and domain availability potential, returning a numeric score, letter grade, and domain name candidates.

## Facts

- Endpoint: POST https://x402.agentutility.ai/company-name-score
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-company-name-score-f853116a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0y9gnfrCvSkG-mj_X-W2S

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentutility-company-name-score-f853116a -d '<json body>'
```

Example prompt: Score my startup name 'LaunchForge' — I want to know how brandable it is, what grade it gets, and what domain names I should consider registering.

## When to prefer this

Use this endpoint when you need a quick, scored evaluation of a company or startup name alongside domain candidate suggestions, particularly during ideation or naming shortlisting workflows. Prefer this over generic keyword tools when you need a combined brandability score plus domain inference in a single call.

## Known failure modes

- Missing or empty name input returns a validation error
- Name with only special characters or numbers may produce low scores or errors
- Very long names may be truncated or rejected
- Payment failure via x402 results in 402 response before processing begins

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Output

A JSON object with the input name, a URL-safe slug, a letter grade (e.g. 'excellent'), a numeric score (0–100), and an array of domain name candidates that could work for the brand.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Candidate company, brand, product, or project name."
      },
      "tlds": {
       "type": "array",
       "description": "Optional TLD list used to emit domain candidate strings. Does not check availability."
      },
      "concept": {
       "type": "string",
       "description": "Optional company/product concept used to score semantic fit."
      },
      "audience": {
       "type": "string",
       "description": "Optional target audience context."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "slug": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "integer"
      },
      "domain_candidates": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "LaunchForge",
  "slug": "launchforge",
  "grade": "excellent",
  "score": 89,
  "domain_candidates": [
   "launchforge.com",
   "launchforge.ai"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-company-name-score-f853116a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
