API الخاص بـ اقتراحات المجالات
احصل على اقتراحات أسماء مجالات مدعومة بالذكاء الاصطناعي بناءً على كلماتك الرئيسية أو علامتك التجارية أو وصف عملك. استخدم هذا المرجع لاختيار عملية ودمج عقد الاستجابة الموثق.
العمليات
GET /v1/suggest
GET
/v1/suggest
معاملات الاستعلام
| المعامل | النوع | مطلوب |
|---|---|---|
| keywords | string | مطلوب |
| tlds | string | اختياري |
| style |
string
القيم المسموحة
brandablekeyword-richshortpronounceabletechyplayfulprofessionalminimal
الافتراضي
brandable
|
اختياري |
| industry |
string
القيم المسموحة
techfinancehealthecommerceeducationmediasaascryptoaigaming
|
اختياري |
| language |
string
القيم المسموحة
enzhesjadefrptitkoruarhibnidmsthvitrplnlsvdanofielcshuroukhe
الافتراضي
en
|
اختياري |
| limit |
integer
الافتراضي
20
|
اختياري |
| check |
boolean
الافتراضي
true
|
اختياري |
حقول الرد
| الحقل | النوع |
|---|---|
suggestions[] |
object[] |
suggestions[] |
object |
suggestions[].name |
string |
suggestions[].domain |
string |
suggestions[].tld |
string |
suggestions[].score |
integer |
suggestions[].available |
boolean | null |
suggestions[].method |
string |
keywords[] |
string[] |
tlds[] |
string[] |
styles[] |
string[] |
industry |
string | null |
language |
string |
generated_count |
integer |
available_count |
integer | null |
generation_summary |
object |
generation_summary.requested_limit |
integer |
generation_summary.candidate_count |
integer |
generation_summary.returned_count |
integer |
generation_summary.availability_checked |
boolean |
generation_summary.availability_check_count |
integer |
generation_summary.available_count |
integer | null |
generation_summary.tld_count |
integer |
generation_summary.language |
string |
generation_summary.method_counts |
object |
generation_summary.style_counts |
object |
generation_summary.top_method |
string | null |
generation_summary.average_score |
integer | null |
meta |
object |
meta.total_generated |
integer |
meta.available_count |
integer |
meta.generation_ms |
integer |
طلب مثال
curl -H "X-API-Key: $DOMSCAN_API_KEY" "https://domscan.net/v1/suggest?keywords=crypto%2Cwallet%2Cfinance&tlds=com%2Cio&style=example.com&industry=example.com&language=es&limit=25&check=example.com"
مثال الرد
{
"suggestions": [
{
"name": "string",
"domain": "example.com",
"tld": "com",
"score": 1,
"available": true,
"method": "string"
}
],
"keywords": [
"string"
],
"tlds": [
"string"
],
"styles": [
"string"
],
"industry": "tech",
"language": "string",
"generated_count": 1,
"available_count": 1,
"generation_summary": {
"requested_limit": 1,
"candidate_count": "2026-04-15",
"returned_count": 1,
"availability_checked": true,
"availability_check_count": 1,
"available_count": 1,
"tld_count": 1,
"language": "string",
"method_counts": {},
"style_counts": {},
"top_method": "string",
"average_score": 1
},
"meta": {
"total_generated": 1,
"available_count": 1,
"generation_ms": 1
}
}