Test your FastAPI endpoints without leaving VS Code. Kill the extra tab. Just click.
✨ Features
CodeLens buttons — ⚡ Test POST /users appears directly above every @app.post() decorator in your code
AI body generation — One click generates realistic fake data (names, emails, dates, IDs) using Claude AI
Auth token manager — Store your Bearer token securely (VS Code SecretStorage, never plain text). Get it from /login, paste once, it's used automatically on every request
Instant response — See status code, response body, and response time inline
Lightweight — Zero npm dependencies at runtime
🚀 Quick Start
Install the extension
Open any Python FastAPI file
See ⚡ Test GET /path buttons appear above each route
Click a button → panel opens beside your code
Hit ⚡ Generate Body → realistic data is auto-filled
Hit ▶ Send Request → see the response instantly
🔑 Auth Token (JWT / Bearer)
Click 🔑 Auth Token in the panel
First, test your /login or /token endpoint
Copy the access_token from the response
Paste it in the token dialog
All future requests automatically include Authorization: Bearer <token>