Pixel

Generate pixel data

POST https://api.antibot.to/akamai/pixel

Headers

Name
Type
Description

content-type*

String

application/json

apikey*

String

user-75188a82-fc45-4c4c-89a0-fa92ac65a8f4

Request Body

Name
Type
Description

userAgent*

String

User Agent

pixelId*

String

The Hash inside the html body (bazadebezolkohpepadr)

scriptID*

String

The Hash inside the pixel script (Bottom of the pixel script)

{
    "pixelData": "pixel data...",
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36"
}

Code Example

Node JS

var axios = require('axios');

var data = JSON.stringify({
  "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36",
  "pixelId": "135890212",
  "scriptID": "99d2984701765a5cb3a16a79dca64e00"
});

var config = {
  method: 'post',
  url: 'https://api.antibot.to/akamai/pixel',
  headers: { 
    'Content-Type': 'application/json'
    'apikey': 'user-75188a82-fc45-4c4c-89a0-fa92ac65a8f4', 
  },
  data : data
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});

Python

Golang

Last updated