Entwickler-Referenz
Domain-Vorschläge API-Dokumentation
Domain-Vorschläge API-Dokumentation: Erhalten Sie KI-gestützte Domain-Namensvorschläge basierend auf Ihren Keywords, Marke oder Geschäftsbeschreibung.
Domain-Vorschläge
Erhalten Sie KI-gestützte Domain-Namensvorschläge basierend auf Ihren Keywords, Marke oder Geschäftsbeschreibung.
GET
/v1/suggest
Abfrageparameter
| Parameter | Typ | Beschreibung |
|---|---|---|
| keywords erforderlich | string | Kommagetrennte Schlüsselwörter (z. B. "tech,cloud") |
| limit optional | number | Maximale Vorschläge, die zurückgegeben werden sollen (Standard: 20, max: 100) |
| tlds optional | string | TLDs zum Verwenden (Standard: "com,ai,app") |
| style optional | string | Stil: brandable, short, keyword-rich, pronounceable |
Beispielanfrage
curl "https://domscan.net/v1/suggest?keywords=cloud,sync&limit=10&style=brandable"
const params = new URLSearchParams({
keywords: "cloud,sync",
limit: "10",
style: "brandable"
});
const response = await fetch("https://domscan.net/v1/suggest?" + params);
console.log(await response.json());
import requests
params = {"keywords": "cloud,sync", "limit": 10, "style": "brandable"}
data = requests.get("https://domscan.net/v1/suggest", params=params).json()
print(data["suggestions"])
package main
import (
"encoding/json"
"fmt"
"net/http"
)
func main() {
url := "https://domscan.net/v1/suggest?keywords=cloud,sync&limit=10&style=brandable"
resp, _ := http.Get(url)
defer resp.Body.Close()
var data map[string]any
json.NewDecoder(resp.Body).Decode(&data)
fmt.Println(data["suggestions"])
}
require 'net/http'
require 'json'
uri = URI("https://domscan.net/v1/suggest?keywords=cloud,sync&limit=10&style=brandable")
response = Net::HTTP.get_response(uri)
data = JSON.parse(response.body)
puts data["suggestions"]
Beispielantwort
{
"suggestions": [
{
"name": "cloudsync",
"domain": "cloudsync.io",
"tld": "io",
"score": 95,
"styles": ["brandable", "pronounceable"],
"method": "combination",
"available": true
}
],
"keywords": ["cloud", "sync"],
"generated_count": 10,
"available_count": 4
}
Antwort-Felder
| Feld | Typ |
|---|---|
suggestions[] |
object[] |
suggestions[] |
object |
suggestions[].name |
string |
suggestions[].domain |
string |
suggestions[].tld |
string |
suggestions[].score |
integer |
suggestions[].available |
boolean |
suggestions[].method |
string |
keywords[] |
string[] |
meta |
object |
meta.total_generated |
integer |
meta.available_count |
integer |
meta.generation_ms |
integer |