hianime-api

module
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 8, 2025 License: MIT

README ΒΆ

HiAnime Logo

HiAnime API

Go Version License GitHub Stars

A powerful Go-based scraper for hianime.to, providing both a REST API and CLI for easy data access.

✨ Features

  • Built with Go β€” Fast and efficient web scraper
  • REST API β€” JSON endpoints for all major hianime.to features
  • CLI Tool β€” Direct scraping from the terminal
  • Streaming Support β€” Fetch servers & links (sub/dub)
  • Search & Discovery β€” Search, suggestions, categories, genres
  • Rich Data β€” Anime details, episodes, schedules, studios
  • Configurable β€” Flags & env variables with CORS support
  • Easy Deployment β€” One-click deploy to Render or run locally

πŸ› οΈ Installation

Start using HiAnime API quickly, either locally or in the cloud.

Install & Run Locally

Install using go install:

go install github.com/ayanrajpoot10/hianime-api/cmd/hianime@latest

Check the available commands and options:

hianime -h

Deploy to Render

Deploy your API to Render instantly with a single click:

Deploy to Render

Notes for Render deployment:

  • Render automatically builds your Go project.
  • The service will start on default configurations.
  • Environment variables can be configured in the Render dashboard as needed.

πŸ“– Usage

Complete Documentation: For detailed usage examples, all commands, and extended API reference, see USES.md

CLI Tool

The CLI tool provides direct access to scraping functions:

# Get homepage content
hianime home

# Search for anime (with optional page)
hianime search "death note" 1

# Get anime details
hianime anime "death-note-60"

# Get episode list
hianime episodes "death-note-60"

# Get anime by genre
hianime genre action 1

# Get streaming links (type: sub|dub, server name)
hianime stream "death-note-60::ep=1464" sub HD-2

# Get schedule by date
hianime schedule "2024-01-15" -330
API Server

Start the API server:

# Using the main binary
hianime serve

# Custom port
hianime serve --port 3030

The API will be available at http://localhost:3030 with documentation at the root URL.

πŸ”Œ API Endpoints

Base URL
http://localhost:3030/api
Sample testing instance

For quick testing only, you can use the following sample testing instance:

https://hianime-api-iy4s.onrender.com

Example request against the sample instance:

curl "https://hianime-api-iy4s.onrender.com/api/home"
Available Endpoints
Method Endpoint Description
GET /home Homepage content (spotlight, trending, etc.)
GET /search?keyword={query}&page={page} Search anime
GET /suggestion?keyword={query} Search suggestions
GET /anime/{id} Anime details
GET /episodes/{id} Episode list
GET /animes/{category}?page={page} Anime by category
GET /genre/{genre}?page={page} Anime by genre
GET /azlist/{sortOption}?page={page} A-Z listing (sort option: A-Z or all)
GET /servers?id={episodeId} Available servers
GET /stream?id={episodeId}&type={sub|dub}&server={name} Streaming links
GET /schedule?date={YYYY-MM-DD}&tzOffset={offset} Estimated schedule for a date
GET /next-episode/{id} Next episode schedule for an anime
GET /producer/{producer-name}?page={page} Anime list by producer/studio
GET /qtip/{id} Short / quick info for an anime
Example API Requests
# Get homepage
curl "http://localhost:3030/api/home"

# Search anime
curl "http://localhost:3030/api/search?keyword=death+note&page=1"

# Get anime details
curl "http://localhost:3030/api/anime/death-note-60"

# Get episodes
curl "http://localhost:3030/api/episodes/death-note-60"

# Get most popular anime
curl "http://localhost:3030/api/animes/most-popular?page=1"

⚠️ Disclaimer

This project is for educational purposes only. It demonstrates web scraping techniques and API development in Go. Please respect the target website's terms of service and implement appropriate rate limiting.

πŸ“ License

This project is licensed under the MIT License. See the LICENSE file for details.

🀝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

πŸ™ Acknowledgments

  • Built with goquery for HTML parsing
  • Ported from the JavaScript project yahyaMomin/hianime-API. This repository ports the original JS project to Go and adds additional features.

Directories ΒΆ

Path Synopsis
cmd
hianime command
internal
api
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL