en
Feedback
API DEV

API DEV

Open in Telegram

مرحباً بك في خدمة الربط البرمجي API ⚙️ يمكنك الان استخدام هذه الخدمة لبيع خدماتنا والاستفادة منها على موقعك او متجرك او تطبيقك او حتى بوت تيليجرام الخاص بك 💰 🤖 بوت : @L5KJBOT

Show more
6 383
Subscribers
+5524 hours
+1617 days
+66730 days

Data loading in progress...

Similar Channels
No data
Any problems? Please refresh the page or contact our support manager.
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
June '26
June '26
+492
in 0 channels
May '26
+1 377
in 0 channels
Get PRO
April '26
+893
in 0 channels
Get PRO
March '26
+1 190
in 0 channels
Get PRO
February '26
+4 212
in 0 channels
Get PRO
January '260
in 0 channels
Get PRO
December '25
+149
in 2 channels
Date
Subscriber Growth
Mentions
Channels
12 June+24
11 June+57
10 June+51
09 June+74
08 June+40
07 June+19
06 June+21
05 June+103
04 June+10
03 June+22
02 June+38
01 June+33
Channel Posts
عيد أضحى مبارك ✨ كل عام وأنتم بخير، أعاده الله عليكم بالفرح والسعادة 🤍

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 815
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 621
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))
980
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))
719
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))
747
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("فشل جلب الخدمات")
801
8
الــ API رجع للعمل بشكل طبيعي Bot M7 : @L5KJBOT
2 824