Quickstart
Make your first javinfo API call in under a minute — get a key, hit /movie, read the JSON.
1. Get an API key
Create a key from your dashboard. Keys are prefixed jvi_.
Send it on every request — see Authentication.
2. Make a request
Search a single title by its DVD code with /movie:
curl "https://api.javinfo.dev/movie?q=SSIS-001" \
-H "x-javinfo-key: jvi_your_key_here"const res = await fetch('https://api.javinfo.dev/movie?q=SSIS-001', {
headers: { 'x-javinfo-key': 'jvi_your_key_here' },
});
const data = await res.json();
console.log(data.result?.titleEn);Both GET (query string) and POST (JSON body) are supported:
curl -X POST "https://api.javinfo.dev/movie" \
-H "x-javinfo-key: jvi_your_key_here" \
-H "Content-Type: application/json" \
-d '{"q":"SSIS-001"}'3. Read the response
/movie returns the query, the winning provider, and the structured result:
{
"q": "SSIS-001",
"source": "r18",
"result": {
"dvdId": "SSIS-001",
"titleEn": "...",
"releaseDate": "2021-07-06",
"actresses": ["..."],
"jacketFullUrl": "https://...",
"extra": { "sampleUrl": "https://...", "galleryFull": ["https://..."] }
}
}Next
- Try the full API reference — including a live playground.
- Understand errors and rate limits & billing.