{"id":25658572,"url":"https://github.com/nabikaz/airdrop-api","last_synced_at":"2026-03-02T06:31:01.288Z","repository":{"id":244294334,"uuid":"814773950","full_name":"NabiKAZ/Airdrop-API","owner":"NabiKAZ","description":"Unofficial API for retrieving airdrop games in JSON format. including details like daily bonuses, rewards, secret codes, and more.","archived":false,"fork":false,"pushed_at":"2025-02-08T16:24:48.000Z","size":95,"stargazers_count":19,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-24T00:29:32.681Z","etag":null,"topics":["airdrop","api","blockchain","game","hamster","hamsterkombat","morse","tapswap","telegram"],"latest_commit_sha":null,"homepage":"https://nabikaz.github.io/Airdrop-API/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NabiKAZ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-13T17:15:05.000Z","updated_at":"2025-02-08T16:24:52.000Z","dependencies_parsed_at":"2025-02-09T22:45:31.703Z","dependency_job_id":null,"html_url":"https://github.com/NabiKAZ/Airdrop-API","commit_stats":null,"previous_names":["nabikaz/hamsterkombat-api","nabikaz/airdrop-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NabiKAZ/Airdrop-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NabiKAZ%2FAirdrop-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NabiKAZ%2FAirdrop-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NabiKAZ%2FAirdrop-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NabiKAZ%2FAirdrop-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NabiKAZ","download_url":"https://codeload.github.com/NabiKAZ/Airdrop-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NabiKAZ%2FAirdrop-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29994120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airdrop","api","blockchain","game","hamster","hamsterkombat","morse","tapswap","telegram"],"created_at":"2025-02-24T00:27:31.111Z","updated_at":"2026-03-02T06:30:59.006Z","avatar_url":"https://github.com/NabiKAZ.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## About\nUnofficial API for retrieving airdrop games in JSON format. including details like daily bonuses, rewards, secret codes, and more.\n\n## Supported Airdrops  \nThis API supports the following airdrops:\n- **[Hamster Kombat](https://t.me/Hamster_kombat_bot/start?startapp=kentId101554083)**: Daily cards and Morse code\n- **[TapSwap](https://t.me/tapswap_bot?start=r_101554083)**: Cinema codes\n\nMore airdrops will be added as the project expands.\n\n## Usage\nThis fixed address contains the required data that you can read and use in your code:\n\n[https://nabikaz.github.io/Airdrop-API/config.json](https://nabikaz.github.io/Airdrop-API/config.json)\n\n## Sample codes\n\npython:\n```python\nimport requests\n\nurl = \"https://nabikaz.github.io/Airdrop-API/config.json\"\nresponse = requests.get(url)\ndata = response.json()\n\nprint(data)\n```\n\nnodejs:\n```js\nimport fetch from 'node-fetch';\n\nconst url = 'https://nabikaz.github.io/Airdrop-API/config.json';\n\nfetch(url)\n    .then(response =\u003e response.json())\n    .then(data =\u003e {\n        console.log(data);\n    })\n    .catch(error =\u003e {\n        console.error('Error:', error);\n    });\n```\n\nphp:\n```php\n\u003c?php\n$url = 'https://nabikaz.github.io/Airdrop-API/config.json';\n$json = file_get_contents($url);\n$data = json_decode($json, true);\n\nprint_r($data);\n```\n\ngo:\n```go\npackage main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"net/http\"\n)\n\nfunc main() {\n\turl := \"https://nabikaz.github.io/Airdrop-API/config.json\"\n\n\tresp, err := http.Get(url)\n\tif err != nil {\n\t\tfmt.Println(\"Error:\", err)\n\t\treturn\n\t}\n\tdefer resp.Body.Close()\n\n\tbody, err := ioutil.ReadAll(resp.Body)\n\tif err != nil {\n\t\tfmt.Println(\"Error:\", err)\n\t\treturn\n\t}\n\n\tvar data map[string]interface{}\n\tjson.Unmarshal(body, \u0026data)\n\n\tfmt.Println(data)\n}\n```\n\n## How it works\nThis is a collaborative work of a group of friends who periodically record the required data on this project.\n\n## Participation\nIf you want to participate in updating the file, contact @NabiKAZ on Telegram or Twitter.\n\n## Supporter\nNothing! Just give a star on the GitHub page, we will be happy. (:\n\n## Donation\nIf this project was useful for you and you are willing, you can make me happy by giving a Star at the top of this GitHub page. Also this is my wallet address for Donate: \\\n- USDT (TRC20): `TEHjxGqu5Y2ExKBWzArBJEmrtzz3mgV5Hb`\n- TON: `UQAzK0qhttfz1kte3auTXGqVeRul0SyFaCZORFyV1WmYlZQj`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnabikaz%2Fairdrop-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnabikaz%2Fairdrop-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnabikaz%2Fairdrop-api/lists"}