Manually make requests

I have an open websocket connection to convex. How can I manually (not through code) make a request to my convex backend?
5 Replies
FleetAdmiralJakob 🗕 🗗 🗙
Can I somehow put my own messages in the websocket via the browser's network tab?
ian
ian•5mo ago
Is this what you're looking for? https://docs.convex.dev/http-api/
Convex HTTP API | Convex Developer Hub
Connecting to Convex directly with HTTP
ian
ian•5mo ago
I don't think you can interact with the websocket directly from your browser
FleetAdmiralJakob 🗕 🗗 🗙
Ok, thing is: I wanted to test to call some backend mutations without writing any code. Just in the normal websocket
ian
ian•5mo ago
You can use curl with the http API to hit the same mutations. You can also use npx convex run which can subscribe to queries, run mutations, etc.