Quick Navigation
Welcome to the DXA API HUB developer documentation. Use our APIs to integrate powerful services into your applications.
API Endpoints
Uptime Guarantee
Support Available
All API requests require an API key. Include it in the URL as a query parameter.
API Key Format
key=DXA-XXXXXXXX
Important
Never share your API key publicly. Keep it secure in your environment variables.
Base URL: https://api.teamdxa.xyz/
/like.php
Paid
Send likes to a FreeFire player profile.
Parameters
key
*
Your API Key
uid
*
FreeFire Player UID
count
Optional
Number of likes (default: 100)
Example Request
GET https://api.teamdxa.xyz/like.php?key=DXA-XXXXXXXX&uid=8307359292
{
"success": true,
"status": 1,
"message": "Likes sent successfully",
"LikesGivenByAPI": 100,
"LikesafterCommand": 1200,
"LikesbeforeCommand": 1100,
"PlayerNickname": "Player_8307359292",
"personal_data": {
"AccountCreated": "2021-01-01",
"BRPoints": 3500,
"BRRank": "Diamond",
"PlayerLevel": 70,
"PlayerRegion": "BD"
},
"remaining_requests": 49,
"response_time": "0.452 sec"
}
/name.php
Paid
Get FreeFire player nickname by UID.
Parameters
key
*
Your API Key
uid
*
FreeFire Player UID
Example Request
GET https://api.teamdxa.xyz/name.php?key=DXA-XXXXXXXX&uid=8307359292
/shell.php
Paid
Get FreeFire shell (UC) information.
Parameters
key
*
Your API Key
uid
*
FreeFire Player UID
Example Request
GET https://api.teamdxa.xyz/shell.php?key=DXA-XXXXXXXX&uid=8307359292
| Code | Message | Description |
|---|---|---|
| 400 | API Key is required | Missing API key parameter |
| 401 | Invalid API Key | API key is invalid or inactive |
| 403 | Request Limit Over | You have used all your requests |
| 404 | UID is required | Missing UID parameter |
| 500 | API Server Error | Internal server error |
curl -X GET "https://api.teamdxa.xyz/like.php?key=DXA-XXXXXXXX&uid=8307359292"
<?php $apiKey = "DXA-XXXXXXXX"; $uid = "8307359292"; $url = "https://api.teamdxa.xyz/like.php?key=" . $apiKey . "&uid=" . $uid; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); $data = json_decode($response, true); print_r($data); ?>
fetch('https://api.teamdxa.xyz/like.php?key=DXA-XXXXXXXX&uid=8307359292')
.then(response => response.json())
.then(data => {
console.log('Success:', data);
if (data.success) {
console.log('Likes sent:', data.LikesGivenByAPI);
}
})
.catch(error => console.error('Error:', error));
import requests
api_key = "DXA-XXXXXXXX"
uid = "8307359292"
url = f"https://api.teamdxa.xyz/like.php?key={api_key}&uid={uid}"
response = requests.get(url)
data = response.json()
if data.get('success'):
print(f"Likes sent: {data['LikesGivenByAPI']}")
else:
print(f"Error: {data['message']}")
DXA API HUB - Complete API Documentation v1.0
Need help? Contact Support