API Status: Active
v2.4 LTS
Integration Documentation
আপনার সিস্টেমে Team Nano-এর API ইন্টিগ্রেট করার জন্য নিচের নির্দেশিকাগুলো অনুসরণ করুন। সমস্ত রিকোয়েস্ট JSON ফরম্যাটে করতে হবে এবং রেসপন্সও JSON ফরম্যাটেই রিটার্ন হবে।
1. Auto Topup API
Gateway Endpoints
UniPin/UC
https://teamnano.top/api/topup/uc
Garena Shell
https://teamnano.top/api/topup/shell
UniPin Payload Request
{
"api_key": "TPBD-XXXX-XXXX",
"orderid": "770",
"playerid": "1234567890",
"code": "Garena_Voucher_PIN_Here",
"url": "https://yourdomain.com/api/callback"
}
Shell Payload Request
{
"api_key": "your_api_key_here",
"playerid": "5930993272",
"package": "67383",
"code": "shell",
"orderid": "104589616681",
"url": "https://user-site.com/callback",
"username": "Shell Account UID",
"password": "mypassword",
"autocode": "3MWJXGTEC"
}
Topup Success
{
"orderid": "123456",
"status": "success",
"message": "Topup completed"
}
Invalid Player ID Error
{
"orderid": "123456",
"status": "error",
"message": "Topup failed"
}
Consumed Voucher Error
{
"orderid": "766",
"status": "error",
"content": "Consumed Voucher"
}
Limit Exceeded Error
{
"status": "error",
"message": "API limit exceeded or invalid key"
}
2. FF ID Name Checking
প্লেয়ারের গেম আইডি (UID) যাচাই বা নিকনেম চেক করার এন্ডপয়েন্ট:
https://teamnano.top/api/name-check?api=API_KEY&uid=12345678
Success (200)
{
"status": true,
"data": {
"status": true,
"username": "BᴀɴɢʟᴀBʜᴀɪツ",
"developer": "@BanglaBhai_FF"
}
}
Error (400)
{
"status": false,
"data": {
"massage": "invalid or expire API",
"developer": "@BanglaBhai_FF"
}
}
3. AI Chat Bot API
GET Method
https://teamnano.top/api/ai-chat?api=KEY&ask=How+Are+You%3F
POST Method
Endpoint: https://teamnano.top/api/ai-chat
{
"api": "YOUR_API_KEY",
"ask": "How Are You?"
}
AI Response Success
{
"status": true,
"data": {
"status": true,
"Reply": "I am an AI assistant created by Team Nano! How can I help you today?",
"developer": "@BanglaBhai_FF"
}
}
AI Response Error
{
"status": false,
"data": {
"message": "Invalid API key or empty query parameter.",
"developer": "@BanglaBhai_FF"
}
}
4. Auto Likes (Free Fire)
https://teamnano.top/api/ff-likes?api=KEY&uid=123456789
Likes Sent Success
{
"status": "success",
"LikesGivenByAPI": 100,
"LikesafterCommand": 1250,
"LikesbeforeCommand": 1150,
"PlayerNickname": "BᴀɴɢʟᴀBʜᴀɪツ",
"developer": "telegram @BanglaBhai_FF"
}
Limit / Server Error
{
"status": false,
"message": "Limit Reached for auto_winning or Invalid API Key"
}
5. SMS Gateway
https://teamnano.top/api/send-sms?api=KEY&phone=01800000000&msg=Hello+World
SMS Sent Callback
{
"status": "success",
"message": "SMS sent successfully"
}
SMS Limit Error
{
"status": "error",
"message": "API limit exceeded or expired"
}