Beanbox
Run AI generated code fast, easy
and secure
1. Get you API key 👉
Here
2. Copy + paste this to you terminal 🖥️
curl -X POST https://api.beanbox.dev/run \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <YOUR-API-KEy>" \
-d '{"code": "x=5; print(x)"}'copy
3. And get this back 🙌
{
"stdout": "5",
"stderr": ""
}