v2.0 API Gateway Connected

Build Faster with TN API

The all-in-one developer platform for gaming top-ups, authentication, and ID verification. Seamless integration, high rate limits, and 99.9% uptime.

Our Core Services

Master API

Access all our core functionalities through a single, unified master endpoint with high concurrency support.

In-Game Topup

Direct UC and Diamond injections with automated fallback servers to ensure 100% success rate.

SMS API

This Api Use For Bulk Sms using our blazing fast API.

UniPin Api

Automate your UniPin voucher generation with robust webhook support.

Integration in minutes,
not days.

Our HTTP GET requests make nickname checking seamless and incredibly fast on any application.

  • Lightweight GET Request
  • Clean JSON Format Response
  • Superfast Name Validations
Explore Full Docs
request.php
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://team-nova.site/api/name-check?uid=12345678&key=YOUR_API_KEY",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
curl_close($curl);
echo $response;
                    
response.json
200 OK
{
  "status": true,
  "data": {
    "status": true,
    "username": "Ƭɴ 〆 Oᴡɴᴇʀ ",
    "developer": "@ariyan_touhid"
  }
}