Netflix Token Generator

Enterprise-grade API for generating direct Netflix login links with unlimited requests and real-time monitoring

100ms Response Unlimited Secure 99.9% Uptime
100ms
Avg Response
Rate Limit
99.9%
Success Rate
24/7
Uptime

API Information

Developer Ichigo Kurosaki
Version 2.2
Authentication Secret Key
Host http://31.97.207.78:6969

Quick Start

curl -X POST http://31.97.207.78:6969/api/gen \
  -H "Content-Type: application/json" \
  -d '{
    "netflix_id": "your_netflix_id",
    "secret_key": "your_secret_key"
  }'

API Endpoint

POST http://31.97.207.78:6969/api/gen

Request Parameters

Parameter Type Required Description
netflix_id string ✓ Yes NetflixId cookie value from a Netflix session
secret_key string ✓ Yes Your secret key for authentication

Code Examples

import requests

url = "http://31.97.207.78:6969/api/gen"
data = {
    "netflix_id": "YOUR_NETFLIX_ID",
    "secret_key": "YOUR_SECRET_KEY"
}

response = requests.post(url, json=data)
result = response.json()

if result.get("success"):
    print(f"Login URL: {result['login_url']}")
    print(f"Token expires: {result['expires']}")
else:
    print(f"Error: {result.get('error')}")
fetch('http://31.97.207.78:6969/api/gen', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
        netflix_id: 'YOUR_NETFLIX_ID',
        secret_key: 'YOUR_SECRET_KEY'
    })
})
.then(r => r.json())
.then(data => {
    if (data.success) {
        console.log('Login URL:', data.login_url);
        console.log('Expires:', data.expires);
    } else {
        console.error('Error:', data.error);
    }
});
curl -X POST http://31.97.207.78:6969/api/gen \
  -H "Content-Type: application/json" \
  -d '{
    "netflix_id": "YOUR_NETFLIX_ID",
    "secret_key": "YOUR_SECRET_KEY"
  }'
<?php
$url = "http://31.97.207.78:6969/api/gen";
$data = [
    "netflix_id" => "YOUR_NETFLIX_ID",
    "secret_key" => "YOUR_SECRET_KEY"
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
$result = json_decode($response, true);

if ($result['success']) {
    echo "Login URL: " . $result['login_url'] . "
";
    echo "Expires: " . $result['expires'] . "
";
} else {
    echo "Error: " . $result['error'] . "
";
}
curl_close($ch);
?>
import java.net.http.*;
import java.net.URI;

public class NetflixTokenGenerator {
    public static void main(String[] args) throws Exception {
        HttpClient client = HttpClient.newHttpClient();
        String json = "{"netflix_id":"YOUR_NETFLIX_ID","secret_key":"YOUR_SECRET_KEY"}";

        HttpRequest request = HttpRequest.newBuilder()
            .uri(URI.create("http://31.97.207.78:6969/api/gen"))
            .header("Content-Type", "application/json")
            .POST(HttpRequest.BodyPublishers.ofString(json))
            .build();

        HttpResponse response = client.send(request,
            HttpResponse.BodyHandlers.ofString());

        System.out.println(response.body());
    }
}
package main

import (
    "bytes"
    "encoding/json"
    "fmt"
    "net/http"
)

func main() {
    url := "http://31.97.207.78:6969/api/gen"
    data := map[string]string{
        "netflix_id": "YOUR_NETFLIX_ID",
        "secret_key": "YOUR_SECRET_KEY",
    }

    jsonData, _ := json.Marshal(data)
    resp, err := http.Post(url, "application/json", bytes.NewBuffer(jsonData))
    if err != nil {
        fmt.Println("Error:", err)
        return
    }
    defer resp.Body.Close()

    var result map[string]interface{}
    json.NewDecoder(resp.Body).Decode(&result)
    fmt.Printf("%+v
", result)
}

Test API Live

Error Codes

Code Description Solution
MISSING_NETFLIX_ID NetflixId parameter is missing Include netflix_id in request body
MISSING_SECRET_KEY Secret key is missing Provide your secret key
INVALID_SECRET_KEY Invalid secret key provided Check your credentials
INVALID_NETFLIX_ID NetflixId is invalid or expired Get a fresh NetflixId cookie
TIMEOUT_ERROR Request to Netflix API timed out Try again in a few seconds