API Documentation

Learn how to integrate NVE API into your applications.

Base URL

https://www.ffnamechak.bdgo.top/api.php

Authentication

All API requests require an API key. You can pass it via:

Endpoint

GET /api.php?uid=UID&key=API_KEY
Parameters
ParameterTypeRequiredDescription
uidstringYesUser ID to lookup
keystringYesYour API key
Example Request
https://www.ffnamechak.bdgo.top/api.php?uid=123456789&key=NVE-XXXXXXXX
Success Response
{
  "status": true,
  "data": {
    "username": "PlayerName"
  }
}
Error Response
{
  "status": false,
  "message": "Invalid API Key"
}

Code Examples

JavaScript (Fetch)
fetch('https://www.ffnamechak.bdgo.top/api.php?uid=123456789&key=YOUR_KEY')
  .then(res => res.json())
  .then(data => console.log(data.data?.username));
Python
import requests
response = requests.get('https://www.ffnamechak.bdgo.top/api.php', 
    params={'uid': '123456789', 'key': 'YOUR_KEY'})
print(response.json())
cURL
curl -X GET "https://www.ffnamechak.bdgo.top/api.php?uid=123456789&key=YOUR_KEY"