Learn how to integrate NVE API into your applications.
All API requests require an API key. You can pass it via:
?key=YOUR_API_KEYX-API-Key: YOUR_API_KEY/api.php?uid=UID&key=API_KEY
| Parameter | Type | Required | Description |
|---|---|---|---|
| uid | string | Yes | User ID to lookup |
| key | string | Yes | Your API key |
https://www.ffnamechak.bdgo.top/api.php?uid=123456789&key=NVE-XXXXXXXX
{
"status": true,
"data": {
"username": "PlayerName"
}
}
{
"status": false,
"message": "Invalid API Key"
}
fetch('https://www.ffnamechak.bdgo.top/api.php?uid=123456789&key=YOUR_KEY')
.then(res => res.json())
.then(data => console.log(data.data?.username));
import requests
response = requests.get('https://www.ffnamechak.bdgo.top/api.php',
params={'uid': '123456789', 'key': 'YOUR_KEY'})
print(response.json())
curl -X GET "https://www.ffnamechak.bdgo.top/api.php?uid=123456789&key=YOUR_KEY"