https://github.com/subzeroid/subzeroid
GitHub profile
https://github.com/subzeroid/subzeroid
Last synced: about 1 month ago
JSON representation
GitHub profile
- Host: GitHub
- URL: https://github.com/subzeroid/subzeroid
- Owner: subzeroid
- Created: 2026-04-17T21:25:10.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-05-13T15:26:26.000Z (2 months ago)
- Last Synced: 2026-05-13T17:28:20.667Z (2 months ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hey! We build Instagram and TikTok APIs for developers
Get Instagram and TikTok data with **100 free requests**. We build production Instagram API and TikTok API services, open-source Python libraries (`instagrapi`, `aiograpi`), MCP servers for AI assistants like Claude Code and Cursor, and Telegram bots for content downloads and OSINT workflows.
Start here:
- **[HikerAPI](https://hikerapi.com/p/hsazcgym)** — Instagram API for profiles, posts, stories, reels, followers, and OSINT workflows
- **[Lamatok](https://lamatok.com/p/s6kl8mtn)** — TikTok API for videos, profiles, comments, hashtags, and automation workflows
- **[Datalikers](https://datalikers.com/p/1by27bwg)** — Instagram & TikTok datasets, MCP server, and cached API for data-heavy workflows
## Quick start
Get Instagram data in 3 lines with the Python client:
```bash
pip install hikerapi
```
```python
from hikerapi import Client
cl = Client(token="")
user = cl.user_by_username_v2("instagram")
```
Grab a free token (100 requests) at [hikerapi.com](https://hikerapi.com/p/hsazcgym).
## MCP for AI Assistants
Use our MCP servers from **Cursor**, **Claude Code**, **Claude Desktop**, **OpenAI Codex**, **Zed**, and **Windsurf**.
| Repo | Description |
|------|-------------|
| [**hikerapi-mcp**](https://github.com/subzeroid/hikerapi-mcp) | MCP server for HikerAPI with 105+ Instagram API tools for AI assistants |
| [**lamatok-mcp**](https://github.com/subzeroid/lamatok-mcp) | MCP server for LamaTok with TikTok API tools for AI assistants |
| [**datalikers-mcp**](https://github.com/subzeroid/datalikers-mcp) | MCP server for Instagram & TikTok datasets and cached API workflows |
## CLI Tools
| Repo | Description | Stars |
|------|-------------|:-----:|
| [**insta‑dl**](https://github.com/subzeroid/insta-dl) | Async CLI to download Instagram profiles, reels, stories, and hashtags — no-ban HikerAPI backend, incremental sync, metadata preserved |  |
| [**insto**](https://github.com/subzeroid/insto) | Instagram OSINT CLI with unique analytics — geo (`/where`, `/place`), network intersect (`/mutuals`), posting cadence (`/timeline`), superfan ranking (`/fans`), plus snapshot/watch/diff over time and Maltego CSV export |  |
## Libraries
| Repo | Description | Stars |
|------|-------------|:-----:|
| [**instagrapi**](https://github.com/subzeroid/instagrapi) | The most actively maintained Python library for Instagram Private API |  |
| [**aiograpi**](https://github.com/subzeroid/aiograpi) | Async Python library for Instagram Private API |  |
| [**aiograpi-rest**](https://github.com/subzeroid/aiograpi-rest) | RESTful API wrapper for aiograpi and Instagram Private API |  |
| [**instagrapi-extra**](https://github.com/subzeroid/instagrapi-extra) | Extra utilities for instagrapi: devices, locale setup, and browser cookie auth |  |
## Telegram Bots
| Repo | Description | Stars |
|------|-------------|:-----:|
| [**instagram-downloader-tgbot**](https://github.com/subzeroid/instagram-downloader-tgbot) | Download Instagram posts, stories, reels, highlights |  |
| [**tiktok-downloader-tgbot**](https://github.com/subzeroid/tiktok-downloader-tgbot) | Download TikTok videos without watermark |  |
| [**instagram-osint-tgbot**](https://github.com/subzeroid/instagram-osint-tgbot) | Instagram OSINT — 20 commands for intelligence gathering |  |
## FAQ
**What Instagram data can I access?**
Profiles, posts, stories, reels, followers, comments, hashtags, and locations — via [HikerAPI](https://hikerapi.com/p/hsazcgym) (live [API](https://api.hikerapi.com)) or [Datalikers](https://datalikers.com/p/1by27bwg) ([datasets](https://datalikers.com/datasets), [MCP](https://datalikers.com/mcp), and [Cache API](https://datalikers.com/cache-api)). For Python, use [`instagrapi`](https://github.com/subzeroid/instagrapi) or its async variant [`aiograpi`](https://github.com/subzeroid/aiograpi).
**What TikTok data can I access?**
Videos, profiles, comments, hashtags, and music — via [Lamatok](https://lamatok.com/p/s6kl8mtn) (live [API](https://api.lamatok.com)) or [Datalikers](https://datalikers.com/p/1by27bwg) ([datasets](https://datalikers.com/datasets), [MCP](https://datalikers.com/mcp), and [Cache API](https://datalikers.com/cache-api)).
**Which AI assistants support the MCP servers?**
Claude Code, Claude Desktop, Cursor, OpenAI Codex, Zed, and Windsurf.
**Is it free?**
Yes. HikerAPI, Lamatok, and Datalikers each include **100 free requests** — no credit card required. The Python libraries (`instagrapi`, `aiograpi`, `aiograpi-rest`, `instagrapi-extra`) and Telegram bots are fully open-source and free to use.
---