DXA
API Documentation

API Documentation

Welcome to the DXA API HUB developer documentation. Use our APIs to integrate powerful services into your applications.

4+

API Endpoints

100%

Uptime Guarantee

24/7

Support Available

Authentication

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.

API Endpoints

Base URL: https://api.teamdxa.xyz/

GET /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
GET /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
GET /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

Error Codes

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

Code Examples

cURL

curl -X GET "https://api.teamdxa.xyz/like.php?key=DXA-XXXXXXXX&uid=8307359292"

PHP

<?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);
?>

JavaScript

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));

Python

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