Random User Agent Generator
API Documentation
GET
https://randomdatatool.com/api/internet/useragentQuery Parameters
| Parameter | Type | Description |
|---|---|---|
| count | int | Number of entries to return. Default: 10. Max: 1000. |
| to_upper_case | bool | Transform the result string to uppercase. |
Response JSON
{
"status": "success",
"data": [
],
"count": 2
}
"status": "success",
"data": [
"Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/533.0.0 (KHTML, like Gecko) Chrome/19.0.864.0 Safari/533.0.0",
"Opera/14.3 (Windows NT 5.3; U; AF) Presto/2.9.167 Version/10.00"
"count": 2
}
Implementation
curl -X GET "https://randomdatatool.com/api/internet/useragent?to_upper_case=true&count=10"