# Domain Name Value Estimator

> Domain Name Value Estimator is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Estimates the market value tier and quality score of a domain name using transparent heuristics including length, TLD premium, dictionary words, pronounceability, and keyword value

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/domain-appraise/estimate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-name-value-estimator-57a723d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vQzYGrumdvugIC-1JdXZz

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 domain-name-value-estimator-57a723d5
```

Example prompt: Can you give me a quick value estimate for the domain name 'sparkly.io' — I want to know its value tier and quality score before I decide whether to buy it?

## When to prefer this

Use this endpoint when you need a fast, free-form domain quality estimate without paying for a commercial appraisal service like Estibot or GoDaddy Appraisals. Ideal for triaging large domain portfolios, screening acquisition candidates, or getting a transparent breakdown of what makes a domain valuable. Not suitable when you need a legally defensible market valuation or comparables-based pricing.

## Known failure modes

- Missing 'domain' query parameter returns a 400 or validation error
- Invalid or malformed domain string may return an error or a very low score
- Uncommon TLDs may not have premium pricing data, reducing score accuracy
- Payment failure or missing x402 header returns 402 Payment Required
- Network or server unavailability on Railway returns 5xx

## How this service works

Estimate the market value tier of a domain name using transparent heuristics — length, TLD premium, dictionary-word presence, pronounceability, keyword value, and numeric/hyphen penalties — returns a value tier and 0-100 quality score so agents can triage domain portfolios and prioritize acquisitions without a paid appraisal service.

## Output

Returns a structured object including the domain name, TLD, extracted name, letter grade, numeric value score (0-100), value tier label (e.g. 'premium', 'standard'), an array of scoring factors with explanations, an array of findings, and a characteristics object summarizing key domain attributes.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "sparkly.io"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name to appraise (e.g. pay.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tld": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "domain": {
       "type": "string"
      },
      "factors": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "value_tier": {
       "type": "string"
      },
      "value_score": {
       "type": "number"
      },
      "characteristics": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tld": "com",
  "name": "pay",
  "grade": "A",
  "score": 100,
  "domain": "pay.com",
  "factors": [
   {
    "detail": "3-character name (ultra premium)",
    "factor": "length",
    "impact": 35
   },
   {
    "detail": ".com TLD",
    "factor": "tld",
    "impact": 25
   },
   {
    "detail": "Exact dictionary word",
    "factor": "dictionary_word",
    "impact": 20
   },
   {
    "detail": "Finance keyword: pay",
    "factor": "keyword_category",
    "impact": 10
   }
  ],
  "findings": [],
  "value_tier": "premium",
  "value_score": 100,
  "characteristics": {
   "length": 3,
   "has_hyphen": false,
   "has_number": false,
   "pronounceable": true,
   "is_dictionary_word": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-name-value-estimator-57a723d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
