A backend API playground powered by Laravel and created by Stackcasts
View the sourcecode at: https://github.com/stackcasts/api-playground
View the demo at: https://api-playground.stackcasts.com
To create a simple Laravel based example API where students learning programming online can experiment safely without having to pay or sign up for any unnecessary services.
# GET '/users'
$ curl GET https://api-playground.stackcasts.com/api/users
# GET '/users/{id}'
$ curl GET https://api-playground.stackcasts.com/api/users/{id}
# POST '/users'
$ curl POST https://api-playground.stackcasts.com/api/users
# PUT '/users'
$ curl PUT https://api-playground.stackcasts.com/api/users/{id}
# DELETE '/users/{id}'
$ curl DELETE https://api-playground.stackcasts.com/api/users/{id}
Note: You do not need to install anything to have access to the API Playground.
These installation steps are only for people who would like to run the API Playground locally or on their own servers.
git clone https://github.com/stackcasts/api-playground api-playground
cd api-playground
Create your database and update
.env
with your database connection details
php artisan migrate --seed
MIT