An open API service indexing awesome lists of open source software.

https://github.com/gughog/smtivtools-backend

Backend for SMT IV Tools API.
https://github.com/gughog/smtivtools-backend

express heroku javascript nodejs postgresql

Last synced: 3 months ago
JSON representation

Backend for SMT IV Tools API.

Awesome Lists containing this project

README

          

# SMTIV Tools API

* Full app avaliable here: **https://smtivtools.netlify.com/**

Working in Progress.

## Routes:

* /api/v1/demons
* /api/v1/demons/:id
* /api/v1/randomdemon
* /api/v1/skills
* /api/v1/skills/:id
* /api/v1/randomskills
* /api/v1/apps
* /api/v1/apps/:id
* /api/v1/randomapps
* /api/v1/specialfusions
* /api/v1/specialfusions/:id
* /api/v1/randomspecialfusion

Route | Req. Queries | Req. Params | Data returned
----------------------------|------------------------------------------------------------------------------------------------|-------------|----------------------
/api/v1/demons | name, lvl, race | - | `Array` of `Objects`
/api/v1/demons/:id | - | id | `Array` of `Objects`
/api/v1/randomdemon | amount | - | `Array` of `Objects`
/api/v1/skills | name, mp, type, effect | - | `Array` of `Objects`
/api/v1/skills/:id | - | - | `Array` of `Objects`
/api/v1/randomskills | amount | - | `Array` of `Objects`
/api/v1/apps | name, points, requirements, description | - | `Array` of `Objects`
/api/v1/apps/:id | - | id | `Array` of `Objects`
/api/v1/randomapps | amount | - | `Array` of `Objects`
/api/v1/specialfusions | demon_result, lvl, ingredient01, ingredient02, ingredient03, ingredient04, unlock_requirements | - | `Array` of `Objects`
/api/v1/specialfusions/:id | - | id | `Array` of `Objects`
/api/v1/randomspecialfusion | amount | - | `Array` of `Objects`