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.
- Host: GitHub
- URL: https://github.com/nabikaz/airdrop-api
- Owner: NabiKAZ
- License: mit
- Created: 2024-06-13T17:15:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-08T16:24:48.000Z (8 months ago)
- Last Synced: 2025-02-08T16:27:08.326Z (8 months ago)
- Topics: airdrop, api, blockchain, game, hamster, hamsterkombat, morse, tapswap, telegram
- Homepage: https://nabikaz.github.io/Airdrop-API/
- Size: 90.8 KB
- Stars: 19
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 codesMore 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 requestsurl = "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