Generate user agents with a simple API call:
POST https://ua.dblx98.com/api.php
/api.php
Generate user agents with POST request
| Parameter | Type | Default | Description |
|---|---|---|---|
count |
integer | 10 | Number of user agents (1-100) |
platform |
string | android | Platform: android, ios, random |
app |
string | App type: instagram, facebook, tiktok, chrome, random | |
unique |
boolean | true | Ensure uniqueness: 1, 0, true, false |
curl -X POST https://yourdomain.com/api.php \
-d "count=5" \
-d "platform=android" \
-d "app=instagram" \
-d "unique=1"
/api.php
Generate user agents with GET request
https://yourdomain.com/api.php?count=5&platform=android&app=instagram&unique=1
const response = await fetch('api.php?count=5&platform=android&app=instagram');
const data = await response.json();
console.log(data.user_agents);
{
"success": true,
"count": 5,
"platform": "android",
"app": "instagram",
"user_agents": [
"Mozilla/5.0 (Linux; Android 13.0; SM-S911B) AppleWebKit...",
"Mozilla/5.0 (Linux; Android 14.0; Pixel 8 Pro) AppleWebKit...",
...
],
"timestamp": 1699876543
}
{
"success": false,
"error": "Error message here",
"timestamp": 1699876543
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://yourdomain.com/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
'count' => 10,
'platform' => 'android',
'app' => 'instagram',
'unique' => 1
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
if ($data['success']) {
foreach ($data['user_agents'] as $ua) {
echo $ua . "\n";
}
}
unique=1 to avoid duplicates in a single request
Need help? Contact support or check the main application