Cookie Converter

Convert browser cookies between Netscape, JSON, HTTP header string, and EditThisCookie formats. Paste cookies in any format - auto-detection handles the rest.

Input Format
Output Format
🍪 Cookies: 0
✓ Valid: 0
⚠ Warnings: 0
⚠ HTTP header format only contains name=value pairs. Domain, path, expiry, and security flags are not available in this format - default values will be used when converting to other formats.
Input Netscape
Output JSON
Format Reference
Netscape / Mozilla
Tab-separated text file used by curl, wget, and browser exporters. 7 fields per line: domain, hostOnly, path, secure, expiry (Unix), name, value.
JSON Array
Standard JSON array with name, value, domain, path, secure, httpOnly, and expirationDate fields. Used in automation frameworks and browser DevTools.
HTTP Header
Semicolon-separated name=value pairs sent in the Cookie request header. Compact but lossy - no domain, path, or expiry data is preserved.
EditThisCookie
Extended JSON format from the popular Chrome extension. Adds storeId, sameSite, session boolean, and id fields. Used for browser cookie import/export workflows.