# PandaStore API — Python Example
import requests
BASE_URL = "https://verifyfp.pandastore.store"
API_KEY = "panda_your_key_here"
# الخطوة 1: استقبال بيانات تيليجرام وتوليد مفتاح API
telegram_auth_data = {
"id": 123456,
"first_name": "User",
"auth_date": 1710000000,
"hash": "abc123def..."
}
r1 = requests.post(f"{BASE_URL}/api/key/generate", json={
"telegram_data": telegram_auth_data
})
API_KEY = r1.json()["api_key"]
print("API Key:", API_KEY)
# الخطوة 3: التحقق من بصمة الجهاز
result = requests.post(f"{BASE_URL}/api/verify", json={
"user_id": 123456789,
"fingerprint": "a1b2c3...", # SHA-256 hash (64 chars)
"api_key": API_KEY
})
if result.json()["blocked"]:
print("⚠️ حساب مكرر!")
else:
print("✅ حساب جديد")
// PandaStore API — Node.js Example
const axios = require('axios');
const BASE_URL = 'https://verifyfp.pandastore.store';
// الخطوة 1: استقبال بيانات تيليجرام وتوليد مفتاح API
const telegramAuthData = {
id: 123456,
first_name: 'User',
auth_date: 1710000000,
hash: 'abc123def...'
};
const r1 = await axios.post(`${BASE_URL}/api/key/generate`, {
telegram_data: telegramAuthData
});
const API_KEY = r1.data.api_key;
// الخطوة 3: التحقق من بصمة الجهاز
const result = await axios.post(`${BASE_URL}/api/verify`, {
user_id: 123456789,
fingerprint: 'a1b2c3...',
api_key: API_KEY
});
if (result.data.blocked) {
console.log('⚠️ حساب مكرر!');
} else {
console.log('✅ حساب جديد');
}