Blog

By javinfo team

Javdatabase provider -- descriptions, samples, and direct movie results

javinfo now reads from javdatabase.com: get full descriptions, sample images, and trailer URLs for any release.

javinfo has a new provider: javdatabase. It brings two things the other sources don’t cover well: readable English descriptions and curated sample image galleries.

Hit POST /movie with providers: "javdatabase" and the response includes a description field (full English summary, not a single sentence), plus sampleImages and a trailerUrl when available. All of it on top of the standard base fields: title, cast, release date, cover art.

Look up a release
curl -X POST "https://api.javinfo.dev/movie" \
-H "x-javinfo-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{ "q": "SSIS-001", "providers": "javdatabase" }'
Response
{
"q": "SSIS-001",
"source": "javdatabase",
"result": {
"dvdId": "SSIS-001",
"titleEn": "After Abstaining From Sex...",
"extra": {
"description": "A newlywed wife succumbs to temptation...",
"sampleImages": ["https://www.javdatabase.com/images/samples/ssis-001_1.webp"],
"trailerUrl": "https://www.javdatabase.com/trailers/ssis-001.mp4"
}
}
}

The /movie endpoint works with all four providers (r18, javdb, missav, javdatabase) and returns one normalized result straight back. Pass "providers": "javdatabase" or let the API try the default order and you get descriptions and samples whenever javdatabase answers. (The old /search endpoint that did two jobs at once is being replaced. Read about the endpoint split.)