API DEV
الذهاب إلى القناة على Telegram
مرحباً بك في خدمة الربط البرمجي API ⚙️ يمكنك الان استخدام هذه الخدمة لبيع خدماتنا والاستفادة منها على موقعك او متجرك او تطبيقك او حتى بوت تيليجرام الخاص بك 💰 🤖 بوت : @L5KJBOT
إظهار المزيد6 304
المشتركون
+624 ساعات
+717 أيام
+62030 أيام
جاري تحميل البيانات...
القنوات المماثلة
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
سحابة العلامات
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
الإشارات الواردة والصادرة
---
---
---
---
---
---
جذب المشتركين
يونيو '26
يونيو '26
+411
في 0 قنوات
مايو '26
+1 377
في 0 قنوات
Get PRO
أبريل '26
+893
في 0 قنوات
Get PRO
مارس '26
+1 190
في 0 قنوات
Get PRO
فبراير '26
+4 212
في 0 قنوات
Get PRO
يناير '260
في 0 قنوات
Get PRO
ديسمبر '25
+149
في 2 قنوات
| التاريخ | نمو المشتركين | الإشارات | القنوات | |
| 10 يونيو | +51 | |||
| 09 يونيو | +74 | |||
| 08 يونيو | +40 | |||
| 07 يونيو | +19 | |||
| 06 يونيو | +21 | |||
| 05 يونيو | +103 | |||
| 04 يونيو | +10 | |||
| 03 يونيو | +22 | |||
| 02 يونيو | +38 | |||
| 01 يونيو | +33 |
منشورات القناة
| 2 | مثال الحصول علي رصيدك الحالي
import requests
import json
API_KEY = "your_api_key_here"
URL = "https://m7smm.store/api/v1/user/balance"
headers = {
"X-API-Key": API_KEY
}
response = requests.get(URL, headers=headers)
data = response.json()
print("HTTP Status:", response.status_code)
print(json.dumps(data, indent=4, ensure_ascii=False)) | 2 654 |
| 3 | مثال الحصول علي جميع طلباتك قسم كل منصات
import requests
import json
API_KEY = "your_api_key_here"
LIMIT = 10
URL = f"https://m7smm.store/api/v1/myorders?limit={LIMIT}"
headers = {
"X-API-Key": API_KEY
}
response = requests.get(URL, headers=headers)
data = response.json()
print("HTTP Status:", response.status_code)
print(json.dumps(data, indent=4, ensure_ascii=False)) | 2 472 |
| 4 | مثال حالة طلب قسم كل منصات
import requests
import json
API_KEY = "your_api_key_here"
ORDER_ID = "ايدي الطلب"
URL = f"https://m7smm.store/api/v1/orders/{ORDER_ID}"
headers = {
"X-API-Key": API_KEY
}
response = requests.get(URL, headers=headers)
data = response.json()
print("HTTP Status:", response.status_code)
print(json.dumps(data, indent=4, ensure_ascii=False)) | 953 |
| 5 | مثال إنشاء طلب قسم كل منصات
import requests
import json
API_KEY = "your_api_key_here"
URL = "https://m7smm.store/api/v1/orders"
headers = {
"X-API-Key": API_KEY,
"Content-Type": "application/json"
}
payload = {
"unique_service_id": "ايدي الخدمه",
"link": "ادخل الرابط",
"quantity": الكميه
}
response = requests.post(URL, headers=headers, json=payload)
data = response.json()
print("HTTP Status:", response.status_code)
print(json.dumps(data, indent=4, ensure_ascii=False)) | 701 |
| 6 | مثال جلب تفاصيل خدمه محدده قسم كل المنصات
import requests
import json
API_KEY = "your_api_key_here"
SERVICE_ID = "ايدي الخدمه"
URL = f"https://m7smm.store/api/v1/services/{SERVICE_ID}"
headers = {
"X-API-Key": API_KEY
}
response = requests.get(URL, headers=headers)
data = response.json()
print("HTTP Status:", response.status_code)
print(json.dumps(data, indent=4, ensure_ascii=False)) | 730 |
| 7 | مثال جلب جميع خدمات قسم كل منصات
import requests
import json
API_KEY = "your_api_key_here"
URL = "https://marvelous-taiyaki-50477a.netlify.app/api/v1/services"
headers = {
"X-API-Key": API_KEY
}
response = requests.get(URL, headers=headers)
data = response.json()
print("HTTP Status:", response.status_code)
print(json.dumps(data, indent=4, ensure_ascii=False))
if data.get("status") == "success":
services = data.get("services", [])
print("عدد الخدمات:", len(services))
for service in services:
service_id = service.get("id")
name = service.get("name")
points = service.get("points")
min_amount = service.get("min_amount")
max_amount = service.get("max_amount")
print(f"- ID: {service_id}")
print(f" الاسم: {name}")
print(f" النقاط: {points}")
print(f" الحد الأدنى: {min_amount}")
print(f" الحد الأقصى: {max_amount}")
else:
print("فشل جلب الخدمات") | 785 |
| 8 | الــ API رجع للعمل بشكل طبيعي
Bot M7 : @L5KJBOT | 2 824 |
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
