API Status: Active

Integration Documentation

v2.4 LTS

আপনার সিস্টেমে Team Nano-এর API ইন্টিগ্রেট করার জন্য নিচের নির্দেশিকাগুলো অনুসরণ করুন। সমস্ত রিকোয়েস্ট JSON ফরম্যাটে করতে হবে এবং রেসপন্সও JSON ফরম্যাটেই রিটার্ন হবে।

1. Auto Topup API

POST

Gateway Endpoints

UniPin/UChttps://teamnano.top/api/topup/uc
Garena Shellhttps://teamnano.top/api/topup/shell

UniPin Payload Request

{
  "api_key": "TPBD-XXXX-XXXX",
  "orderid": "770",
  "playerid": "1234567890",
  "code": "Code_1,Code_2,Code_3",
  "url": "https://yourdomain.com/api/callback"
}

Shell Payload Request

{
  "api_key": "your_api_key_here",
  "playerid": "5930993272",
  "package": "67383",
  "code": "shell",
  "orderid": "104589616681",
  "qty": "1",
  "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"
}

Shell Callback

WEBHOOK POST

Immediate Response (200 OK)

status: accepted
When any item fails, the top-level status is failed even if some items succeeded. Check each batch entry's ok field for the real per-item outcome.

Callback — Single Item, Success

{
  "status": "success",
  "orderid": "ORDER123",
  "content": { "batch": [{ "package": "LITE", "ok": true, "detail": "Success" }] },
  "nickname": "PlayerName"
}

2. FF ID Name Checking

GET

প্লেয়ারের গেম আইডি (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 / POST

GET Method

https://teamnano.top/api/ai-chat?api=KEY&ask=How+Are+You%3F

POST Method

Endpoint: https://teamnano.top/api/ai-chat

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"
  }
}

4. Auto Likes (Free Fire)

GET
https://teamnano.top/api/ff-likes?api=KEY&uid=123456789

Likes Sent Success

{
  "status": "success",
  "LikesGivenByAPI": 100,
  "LikesafterCommand": 1250,
  "LikesbeforeCommand": 1150,
  "PlayerNickname": "BᴀɴɢʟᴀBʜᴀɪツ"
}

Limit / Server Error

{
  "status": false,
  "message": "Limit Reached or Invalid API Key"
}

5. SMS Gateway

GET
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"
}