https://github.com/fastuptime/fastgaming_api_express
Fast Gameing API
https://github.com/fastuptime/fastgaming_api_express
game game-api
Last synced: 12 months ago
JSON representation
Fast Gameing API
- Host: GitHub
- URL: https://github.com/fastuptime/fastgaming_api_express
- Owner: fastuptime
- License: other
- Created: 2023-01-09T13:55:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-09T14:36:52.000Z (over 3 years ago)
- Last Synced: 2025-05-15T05:11:20.817Z (about 1 year ago)
- Topics: game, game-api
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# FastGaming_API_Express
## Usage/Examples

```javascript
var axios = require("axios");
var qs = require("qs");
var data = qs.stringify({
type: "minecraft",
host: "play.craftrise.com.tr",
});
var config = {
method: "post",
url: "http://localhost/api",
headers: {
Accept: "application/json",
"Content-Type": "application/x-www-form-urlencoded",
},
data: data,
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
```
## API Reference
```http
POST /api
```
- Form Data
| Parameter | Type | Description |
| :-------- | :------- | :-------------------------------- |
| `type` | `string` | Server ID in game_list.txt |
| Parameter | Type | Description |
| :-------- | :------- | :-------------------------------- |
| `host` | `string`,| Server ip address |
## Tech Stack
**Server:** Node, Express, Gamedig
---
- ✨ [Destek İçin](https://fastuptime.com)
- 💕 [Discord](https://fastuptime.com/discord)
- 🎖️ [FasterHost Technology](https://fasterhost.tech/)
- ✨ İletişim için [Tıkla!](mailto:fastuptime@gmail.com)
# License
- Its protected by Creative Commons ([CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/))
