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

https://github.com/nabikaz/airdrop-api

Unofficial API for retrieving airdrop games in JSON format. including details like daily bonuses, rewards, secret codes, and more.
https://github.com/nabikaz/airdrop-api

airdrop api blockchain game hamster hamsterkombat morse tapswap telegram

Last synced: 7 months ago
JSON representation

Unofficial API for retrieving airdrop games in JSON format. including details like daily bonuses, rewards, secret codes, and more.

Awesome Lists containing this project

README

          

## About
Unofficial API for retrieving airdrop games in JSON format. including details like daily bonuses, rewards, secret codes, and more.

## Supported Airdrops
This API supports the following airdrops:
- **[Hamster Kombat](https://t.me/Hamster_kombat_bot/start?startapp=kentId101554083)**: Daily cards and Morse code
- **[TapSwap](https://t.me/tapswap_bot?start=r_101554083)**: Cinema codes

More airdrops will be added as the project expands.

## Usage
This fixed address contains the required data that you can read and use in your code:

[https://nabikaz.github.io/Airdrop-API/config.json](https://nabikaz.github.io/Airdrop-API/config.json)

## Sample codes

python:
```python
import requests

url = "https://nabikaz.github.io/Airdrop-API/config.json"
response = requests.get(url)
data = response.json()

print(data)
```

nodejs:
```js
import fetch from 'node-fetch';

const url = 'https://nabikaz.github.io/Airdrop-API/config.json';

fetch(url)
.then(response => response.json())
.then(data => {
console.log(data);
})
.catch(error => {
console.error('Error:', error);
});
```

php:
```php