😀
antibot.to
  • Welcome!
  • Getting Started With The API
  • Reference
    • Akamai
      • Akamai 2.0
      • Akamai v1
      • Pixel
    • Kasada
      • x-kpsdk-cd
      • x-kpsdk-ct
Powered by GitBook
On this page
  • Sensor data for version 1.69, 1.7, 1.75
  • Code Example
  1. Reference
  2. Akamai

Akamai v1

Sensor data for version 1.69, 1.7, 1.75

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

Headers

Name
Type
Description

content-type*

String

application/json

apikey*

String

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

Request Body

Name
Type
Description

abck*

String

_abck cookie

url*

String

site URL

init

bool

first request

userAgent*

String

latest user Agent

version*

Int

Akamai version (1.69, 1.7, 1.75)

{
    "sensor": "sensorData",
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36"
}
{
    "Success": false,
    "Message": "missing .."
}
{
    "Success": false,
    "Error": "Invalid APIKey."
}
{
    "Success": false,
    "Message": "Server Error."
}

Code Example

Node JS

import axios from "axios";

axios({
  method: "POST",
  url: "https://api.antibot.to/akamai/generate",
  headers: {
    "Content-Type": "application/json",
    apikey: "user-75188a82-fc45-4c4c-89a0-fa92ac65a8f4",
  },
  data: {
    abck: "_abck cookie",
    url: "site URL",
    userAgent: "User Agent",
    version: 1.75,
  },
})
  .then((data) => {
    const sensorData = data.data.sensor;
    const userAgent = data.data.userAgent;
  })
  .catch((error) => {
    console.log(error);
  });
PreviousAkamai 2.0NextPixel

Last updated 2 years ago