HumbleWorth
Back to About Developer

API Documentation

The HumbleWorth domain valuation model is hosted on Replicate, providing fast, scalable AI-powered valuations with support for up to 2,560 domains per request.

View on Replicate
$0.10 per 1,000 predictions
Typically <2 seconds
Up to 2,560 domains per request
Runs on CPU

Model Overview

Our domain valuation model is hosted on Replicate at humbleworth/price-predict-v1 . The model combines domain embeddings with word embeddings using Sentence Transformers to predict domain values across three sales channels.

Model: humbleworth/price-predict-v1
Version: a925db842c70...

Quick Start

The fastest way to get started is with Replicate's create-replicate tool.

Terminal
npx create-replicate --model=humbleworth/price-predict-v1

Node.js

1. Install the client

Terminal
npm install replicate

2. Set your API token

Get your API token from replicate.com/account/api-tokens

Terminal
export REPLICATE_API_TOKEN=r8_your_token_here

3. Run the model

JavaScript
import Replicate from "replicate";

const replicate = new Replicate({
  auth: process.env.REPLICATE_API_TOKEN,
});

const output = await replicate.run(
  "humbleworth/price-predict-v1:a925db842c707850e4ca7b7e86b217692b0353a9ca05eb028802c4a85db93843",
  {
    input: {
      domains: "example.com, startup.net, innovation.org"
    }
  }
);

console.log(output);

Python

1. Install the client

Terminal
pip install replicate

2. Run the model

Python
import replicate

output = replicate.run(
    "humbleworth/price-predict-v1:a925db842c707850e4ca7b7e86b217692b0353a9ca05eb028802c4a85db93843",
    input={
        "domains": "example.com, startup.net, innovation.org"
    }
)

print(output)

Input Format

Pass domains as a comma-separated string in the domains input field. You can include up to 2,560 domains per request.

Example Input
{
  "domains": "CoatFinder.com, CommissionWell.com, tech.net"
}

Response Format

The API returns a JSON object with an array of valuations. Each valuation includes estimated values across three sales channels.

auction

Estimated value in competitive auction environments (50th percentile).

marketplace

Estimated value for direct marketplace sales (97.5th percentile).

brokerage

Estimated value through premium brokerage services (99.25th percentile).

Example Response
{
  "valuations": [
    {
      "domain": "coatfinder.com",
      "auction": 35,
      "brokerage": 7871,
      "marketplace": 2616
    },
    {
      "domain": "commissionwell.com",
      "auction": 30,
      "brokerage": 9370,
      "marketplace": 3017
    }
  ]
}

Best Practices

  • Submit domains in lowercase for consistency.
  • Batch multiple domains (up to 2,560) for maximum efficiency—batching is more cost-effective than individual requests.
  • Include TLD extensions (.com, .net, etc.) with each domain.
  • Avoid special characters or internationalized domain names (IDNs).

Limitations & Considerations

  • Estimates are AI-generated and should not replace human expertise for important decisions.
  • Training data extends through early 2024; recent market trends may not be fully represented.
  • The model is optimized for English-language domains.
  • Trademark issues and legal considerations are not evaluated by the model.

View the full model documentation, pricing details, and run the model directly on Replicate.

View on Replicate

For further assistance or inquiries, please contact hello@humbleworth.com.