
gregpriday/humbleworth-price
Estimates the value of a domain name.
Public
4
runs
Run gregpriday/humbleworth-price with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
domains |
string
|
example.com
|
Domain names to evaluate (comma-separated list or single domain, up to 2560 domains)
|
{
"type": "object",
"title": "Input",
"properties": {
"domains": {
"type": "string",
"title": "Domains",
"default": "example.com",
"x-order": 0,
"description": "Domain names to evaluate (comma-separated list or single domain, up to 2560 domains)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"required": [
"valuations"
],
"properties": {
"error": {
"type": "string",
"title": "Error",
"nullable": true
},
"valuations": {
"type": "array",
"items": {
"type": "object",
"title": "DomainValuation",
"required": [
"domain"
],
"properties": {
"error": {
"type": "string",
"title": "Error",
"nullable": true
},
"domain": {
"type": "string",
"title": "Domain"
},
"auction": {
"type": "number",
"title": "Auction",
"nullable": true
},
"brokerage": {
"type": "number",
"title": "Brokerage",
"nullable": true
},
"marketplace": {
"type": "number",
"title": "Marketplace",
"nullable": true
}
}
},
"title": "Valuations"
}
}
}