🎫 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
- Open Developer Tools (F12)
- Go to Console tab
- Run:
window.Clerk.session.getToken().then(token => console.log(token))
- Copy the token from console output
Browser Storage Method
- Open Developer Tools (F12)
- Go to Application/Storage tab
- Look in Local Storage for keys starting with '__clerk_'
- Find the session data and extract the JWT token