SkillAgentSearch skills...

Mangodex

API wrapper for MangaDex v5 API.

Install / Use

/learn @darylhjd/Mangodex
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

mangodex

Go Reference

Golang API wrapper for MangaDex v5's MVP API.

Full API documentation is found here.

This branch contains only essential services, such as Manga searching and image downloading.

Installation

To install, do go get -u github.com/darylhjd/mangodex@essential.

Usage

package main

import (
	"fmt"
	
	m "github.com/darylhjd/mangodex@simple"
)

func main() {
	// Create new client.
	// Without logging in, you may not be able to access 
	// all API functionality.
	c := m.NewDexClient()

	// Login using your username and password.
	err := c.Auth.Login("user", "password")
	if err != nil {
		fmt.Println("Could not login!")
	}
}

Contributing

Any contributions are welcome.

View on GitHub
GitHub Stars39
CategoryDevelopment
Updated10d ago
Forks8

Languages

Go

Security Score

95/100

Audited on Mar 27, 2026

No findings