Enterprise-grade API that converts Netflix browser cookies into valid login tokens. Get full account info, session data, and auth credentials instantly.
Three simple steps to convert a Netflix cookie into a usable login token.
Contact us on Telegram to receive your unique API key. Free playground keys are available instantly for testing.
POST your Netflix browser cookie to our endpoint. We accept raw cookie strings, headers, or pre-parsed objects.
Receive account email, subscription type, country, profile list, MSL token, and more in a clean JSON response.
Integrate in under 30 seconds. Here's a Python example.
import requests url = "https://nftoken-api-webapp.up.railway.app/v1/api" headers = { "Content-Type": "application/json" } payload = { "key": "NF-xxxxx", "cookie": "NetflixId=..." } res = requests.post(url, json=payload, headers=headers) data = res.json() print(data["data"]["Email"]) # user@example.com print(data["data"]["token"]) # login token print(data["data"]["Plan"]) # Premium 4K
Start free. Scale as you grow. No hidden fees.