🎫 Clerk Token Extractor

This tool helps you extract your Clerk authentication token for API testing.

Prerequisites: You must be signed in to your application in this browser session.

Step 1: Check if Clerk is Available

Step 2: Extract Token

Step 3: Copy Token

Step 4: Test Your Token

Use your token with the test scripts:

python test_video_simple.py https://your-api-url.com/api/v1 YOUR_TOKEN_HERE

Alternative Methods

Manual Browser Console Method
  1. Open Developer Tools (F12)
  2. Go to Console tab
  3. Run: window.Clerk.session.getToken().then(token => console.log(token))
  4. Copy the token from console output
Browser Storage Method
  1. Open Developer Tools (F12)
  2. Go to Application/Storage tab
  3. Look in Local Storage for keys starting with '__clerk_'
  4. Find the session data and extract the JWT token