Fast, secure, and smart validation for Netflix cookies. Integrate seamlessly into your apps.
const axios = require('axios');
async function checkCookie() {
try {
const response = await axios.post('https://makizig.duckdns.org/v1/api.php', {
key: "YOUR_API_KEY",
cookie: "PASTE_YOUR_COOKIE_HERE"
});
console.log(response.data);
} catch (error) {
console.error("API Error:", error.response ? error.response.data : error.message);
}
}
checkCookie();
import requests
url = "https://makizig.duckdns.org/v1/api.php"
payload = {
"key": "YOUR_API_KEY",
"cookie": "PASTE_YOUR_COOKIE_HERE"
}
try:
response = requests.post(url, json=payload)
print(response.json())
except Exception as e:
print("Error:", e)
<?php
$url = 'https://makizig.duckdns.org/v1/api.php';
$data = json_encode([
'key' => 'YOUR_API_KEY',
'cookie' => 'PASTE_YOUR_COOKIE_HERE'
]);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
$response = curl_exec($ch);
curl_close($ch);
print_r(json_decode($response, true));
?>
package main
import (
"bytes"
"fmt"
"io"
"net/http"
)
func main() {
url := "https://makizig.duckdns.org/v1/api.php"
payload := []byte(`{"key":"YOUR_API_KEY", "cookie":"PASTE_YOUR_COOKIE_HERE"}`)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(payload))
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
key in your JSON payload to authenticate.// Response will appear here...