开发者参考

域名评估 API 文档

域名评估 API 文档: 根据多个因素(包括长度、关键词、TLD 和市场趋势)估算域名的市场价值。

域名评估

根据多个因素(包括长度、关键词、TLD 和市场趋势)估算域名的市场价值。

注意: 这只是一个算法估计。实际市场价值可能因买家需求和市场条件而异。
GET /v1/value

查询参数

参数类型说明
domain 必需 string 完整域名(例如 "startup.com")

请求示例

curl "https://domscan.net/v1/value?domain=x.com"

响应示例

{
                "domain": "x.com",
                "label": "x",
                "tld": "com",
                "estimate": {
                "low": 9171241,
                "mid": 12737835,
                "high": 15000000,
                "currency": "USD"
                },
                "comparables": [{
                "category": "1-letter .com",
                "typical_range": { "low": 5000000, "high": 15000000 },
                "relevance": 1
                }],
                "factors": {
                "length": 1,
                "tldTier": "premium",
                "lettersOnly": true,
                "isDictionaryWord": false,
                "isBrandable": false
                },
                "confidence": 0.82,
                "analysis": {
                "scope": "intrinsic_domain_value",
                "excludes": ["website_traffic", "revenue", "brand_equity", "buyer-specific strategic premium"],
                "range_source": "anchored",
                "confidence_label": "high",
                "primary_comparable_category": "1-letter .com",
                "primary_comparable_range": { "low": 5000000, "high": 15000000, "position": "upper", "relative_position": 0.85 },
                "out_of_distribution": false
                },
                "methodology": "Algorithmic intrinsic-domain estimate anchored to public domain sales data"
                }

响应字段

字段 类型
domain string
label string
tld string
estimate object
estimate.low integer
estimate.mid integer
estimate.high integer
estimate.currency string
factors object
factors.length integer
factors.lengthMultiplier number
factors.tld string
factors.tldTier string
factors.tldBase integer
factors.hasHyphens boolean
factors.hasNumbers boolean
factors.lettersOnly boolean
factors.isPremiumWord boolean
factors.isDictionaryWord boolean
factors.isBrandable boolean
factors.isNumericPattern boolean
factors.isLetterPattern boolean
factors.pronounceability number
factors.memorability number
factors.spellingDifficulty number
factors.isAcronym boolean
factors.hasCommonEnding boolean
factors.syllableCount integer
comparables[] object[]
comparables[] object
comparables[].category string
comparables[].typical_range object
comparables[].typical_range.low integer
comparables[].typical_range.high integer
comparables[].examples[] string[]
comparables[].relevance number
confidence number
analysis object
analysis.scope string
analysis.excludes[] string[]
analysis.range_source string
analysis.range_width string
analysis.confidence_label string
analysis.primary_comparable_category string | null
analysis.primary_comparable_range object
analysis.primary_comparable_range.low integer
analysis.primary_comparable_range.high integer
analysis.primary_comparable_range.position string
analysis.primary_comparable_range.relative_position number
analysis.out_of_distribution boolean
analysis.out_of_distribution_reasons[] string[]
analysis.positive_factors[] string[]
analysis.negative_factors[] string[]
methodology string
meta object
meta.served_by string
meta.worker_version string
meta.disclaimer string
POST /v1/value/bulk

在一个请求中评估多个域名。请求正文:{"domains": ["a.com", "b.io"]}

响应字段

字段 类型
results[] object[]
results[] object
results[].domain string
results[].label string
results[].tld string
results[].estimate object
results[].estimate.low integer
results[].estimate.mid integer
results[].estimate.high integer
results[].estimate.currency string
results[].factors object
results[].factors.length integer
results[].factors.lengthMultiplier number
results[].factors.tld string
results[].factors.tldTier string
results[].factors.tldBase integer
results[].factors.hasHyphens boolean
results[].factors.hasNumbers boolean
results[].factors.lettersOnly boolean
results[].factors.isPremiumWord boolean
results[].factors.isDictionaryWord boolean
results[].factors.isBrandable boolean
results[].factors.isNumericPattern boolean
results[].factors.isLetterPattern boolean
results[].factors.pronounceability number
results[].factors.memorability number
results[].factors.spellingDifficulty number
results[].factors.isAcronym boolean
results[].factors.hasCommonEnding boolean
results[].factors.syllableCount integer
results[].comparables[] object[]
results[].comparables[] object
results[].comparables[].category string
results[].comparables[].typical_range object
results[].comparables[].typical_range.low integer
results[].comparables[].typical_range.high integer
results[].comparables[].examples[] string[]
results[].comparables[].relevance number
results[].confidence number
results[].analysis object
results[].analysis.scope string
results[].analysis.excludes[] string[]
results[].analysis.range_source string
results[].analysis.range_width string
results[].analysis.confidence_label string
results[].analysis.primary_comparable_category string | null
results[].analysis.primary_comparable_range object
results[].analysis.primary_comparable_range.low integer
results[].analysis.primary_comparable_range.high integer
results[].analysis.primary_comparable_range.position string
results[].analysis.primary_comparable_range.relative_position number
results[].analysis.out_of_distribution boolean
results[].analysis.out_of_distribution_reasons[] string[]
results[].analysis.positive_factors[] string[]
results[].analysis.negative_factors[] string[]
results[].methodology string
results[].meta object
results[].meta.served_by string
results[].meta.worker_version string
results[].meta.disclaimer string
meta object
meta.served_by string
meta.worker_version string
meta.total integer
meta.disclaimer string

响应示例

{
  "results": [
    {
      "domain": "example.com",
      "label": "string",
      "tld": "com",
      "estimate": {
        "low": 1,
        "mid": 1,
        "high": 1,
        "currency": "USD"
      },
      "factors": {
        "length": 1,
        "lengthMultiplier": "198.51.100.10",
        "tld": "com",
        "tldTier": "premium",
        "tldBase": 1,
        "hasHyphens": true,
        "hasNumbers": true,
        "lettersOnly": true,
        "isPremiumWord": true,
        "isDictionaryWord": true,
        "isBrandable": true,
        "isNumericPattern": true,
        "isLetterPattern": true,
        "pronounceability": 1,
        "memorability": 1,
        "spellingDifficulty": 1,
        "isAcronym": true,
        "hasCommonEnding": true,
        "syllableCount": 1
      },
      "comparables": [
        {
          "category": "string",
          "typical_range": {
            "low": 1,
            "high": 1
          },
          "examples": [
            "string"
          ],
          "relevance": 1
        }
      ],
      "confidence": 1,
      "analysis": {
        "scope": "intrinsic_domain_value",
        "excludes": [
          "string"
        ],
        "range_source": "heuristic",
        "range_width": "narrow",
        "confidence_label": "low",
        "primary_comparable_category": "string",
        "primary_comparable_range": {
          "low": 1,
          "high": 1,
          "position": "lower",
          "relative_position": 1
        },
        "out_of_distribution": true,
        "out_of_distribution_reasons": [
          "string"
        ],
        "positive_factors": [
          "string"
        ],
        "negative_factors": [
          "string"
        ]
      },
      "methodology": "string",
      "meta": {
        "served_by": "string",
        "worker_version": "string",
        "disclaimer": "string"
      }
    }
  ],
  "meta": {
    "served_by": "string",
    "worker_version": "string",
    "total": 1,
    "disclaimer": "string"
  }
}

被出色公司的人们使用

VercelLLM PulseOLXCasa ModernaPipeCal.comBeehiivSnykTogglRemoteSprigDeel