Skip to content
@javinfo

JAVINFO

A complete infrastructure to get Japanese adult video data from various sites

javinfo

JAV metadata search. Send a DVD ID like SSIS-001, get back a JSON object: title, cast, maker, cover art, download links, HLS streams, the works.

javinfo.dev · web app, or hit the API directly.

API

Two endpoints at https://api.javinfo.dev:

Endpoint Returns
POST /movie Single best match
POST /query Ranked list of matches

Pass a code and optionally pin which providers to try. Auth via x-javinfo-key header. No charge on non-200 responses.

curl -X POST 'https://api.javinfo.dev/movie' \
  -H 'Content-Type: application/json' \
  -H 'x-javinfo-key: YOUR_KEY' \
  -d '{ "q": "SSIS-001" }'
const res = await fetch("https://api.javinfo.dev/movie", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "x-javinfo-key": "YOUR_KEY",
  },
  body: JSON.stringify({ q: "SSIS-001", providers: "javdb" }),
});
const data = await res.json();
import requests

res = requests.post(
    "https://api.javinfo.dev/movie",
    headers={"x-javinfo-key": "YOUR_KEY"},
    json={"q": "CAWD-001", "providers": "javdb"},
)
data = res.json()

→ Get a free key

MCP

Model Context Protocol server (stdio) for AI agents. Look up releases by code, title, or actress; fetch metadata, download links, or stream URLs; open a local LAN HLS play session via the CLI.

Install from npm:

{
  "mcpServers": {
    "javinfo": {
      "command": "npx",
      "args": ["-y", "@javinfo/mcp"],
      "env": { "JAVINFO_API_KEY": "YOUR_KEY" }
    }
  }
}

Tools: javinfo-search, javinfo-movie, javinfo-random, javinfo-open, javinfo-serve.

CLI

Production-oriented Rust CLI — API client plus local tools. Install:

curl -fsSL https://javinfo.dev/install.sh | bash
javinfo login                                   # save your API key
javinfo movie SSIS-001 --json                   # code lookup
javinfo nfo ~/Videos/JAV --write                # Kodi/Jellyfin NFO + artwork
javinfo open EBOD-391 --with vlc                # LAN HLS play session

Commands: movie, nfo, login, status, serve / open.

Providers

Provider Returns
fanza Richest structured metadata: bilingual title, cast, maker, label, series, covers, trailer, gallery
dmm Richest structured metadata: bilingual title, cast, maker, label, series, covers, trailer, gallery
javdb Metadata plus magnet / PikPak download links and community score
missav Metadata plus HLS stream URLs (.m3u8)
javdatabase Metadata plus description, sample images, and a trailer URL
javlibrary Catalog data: title, cast, genres, runtime, release date, studio, cover, and sample images

All providers work on every request. No tier gating. Results cache server-side, so repeated lookups are fast.

Join other hundreds of developers building on javinfo.dev now.

Pinned Loading

  1. mcp mcp Public

    A complete infrastructure to get Japanese adult video data from various sites

    JavaScript 1 1

  2. cli cli Public

    Cli for javinfo

    Rust 1

Repositories

Showing 5 of 5 repositories
  • cli Public

    Cli for javinfo

    javinfo/cli's past year of commit activity
    Rust 1 MIT 0 0 0 Updated Sep 15, 2026
  • .github Public
    javinfo/.github's past year of commit activity
    0 0 0 0 Updated Aug 31, 2026
  • mcp Public

    A complete infrastructure to get Japanese adult video data from various sites

    javinfo/mcp's past year of commit activity
    JavaScript 1 MIT 1 0 0 Updated Aug 25, 2026
  • legacy Public

    [Deprecated] An API to scrape Japanese adult video data from various sites

    javinfo/legacy's past year of commit activity
    78 19 0 0 Updated Jul 7, 2026
  • Emby.Plugins.JavInfo Public Forked from JavScraper/Emby.Plugins.JavScraper

    Emby/Jellyfin 的一个日本电影刮削器插件,可以从某些网站抓取影片信息。

    javinfo/Emby.Plugins.JavInfo's past year of commit activity
    C# 1 570 0 0 Updated Jul 8, 2024

People

This organization has no public members. You must be a member to see who’s a part of this organization.