elliotttate / beatsaver-laravel

Rewrite of beatsaver.com (https://github.com/beatsaver/beatsaver) using the laravel framework
https://discord.gg/8B44zqM
MIT License
39 stars 19 forks source link

API documentation #61

Closed LauraWebdev closed 5 years ago

LauraWebdev commented 5 years ago

Are there any documents or ressources for the beatsaver api? I've seen a few api urls but no documentation of it.

Byorun commented 5 years ago
Route::get('/songs/top/{start?}','ApiController@topDownloads');
Route::get('/songs/plays/{start?}','ApiController@topPlayed');
Route::get('/songs/new/{start?}','ApiController@newest');
Route::get('/songs/byuser/{id}/{start?}','ApiController@byUser');
Route::get('/songs/detail/{key}','ApiController@detail');
Route::get('/songs/vote/{key}/{type}/{accessToken}', 'ApiController@vote');
Route::get('/songs/search/{type}/{key}','ApiController@search');
LauraWebdev commented 5 years ago

thank you very much!

luludotdev commented 5 years ago

At some point I'm going to write up actual documentation for the API, I'll post it here when it's done

lmmfranco commented 5 years ago

Maybe leave that issue open so it is easier to find