Frequently Asked Questions
You can search in two ways:
Matrix)tt0133093)| Account type | Browser | API |
|---|---|---|
| Guest (no account) | 20/day | 10/day |
| Registered | 100/day | 50/day |
| VIP | 1000/day | 1000/day |
VIP is a premium membership for โฌ10/year that includes:
tt16431404). If the movie is not found, you will see a button to look it up and add it from IMDB automatically.
Search subtitles via GET request:
GET https://subtitles.website/strapi/api/search/subtitles?title=Matrix
GET https://subtitles.website/strapi/api/search/subtitles?imdb=tt0133093
GET https://subtitles.website/strapi/api/search/subtitles?title=Matrix&language=en&format=srt
For authenticated requests, include your API key:
Authorization: Bearer YOUR_API_KEY
Yes! We have a Stremio-compatible subtitle endpoint. Use the following URL format:
https://subtitles.website/strapi/api/search/stremio/{imdb_id}/{language}
Examples:
# English subtitles for The Matrix
https://subtitles.website/strapi/api/search/stremio/tt0133093/en
# Croatian subtitles
https://subtitles.website/strapi/api/search/stremio/tt0133093/hr
# All languages
https://subtitles.website/strapi/api/search/stremio/tt0133093/all
Response format:
{
"subtitles": [
{
"id": "abc123",
"url": "https://subtitles.website/strapi/uploads/subtitle.vtt",
"lang": "eng",
"name": "The.Matrix.1999.1080p.BrRip.x264.YIFY.en"
}
]
}
How to install in Stremio:
https://subtitles.website/stremio/manifest.json
Or open this link in your browser:
stremio://subtitles.website/stremio/manifest.json
Note: If you have other subtitle addons installed, they may take priority. Subtitles from all installed addons are shown in the CC menu during playback.
No registration required for basic search and download. Examples:
# Search by title
GET https://subtitles.website/strapi/api/search/subtitles?title=Matrix
# Search by IMDB ID
GET https://subtitles.website/strapi/api/search/subtitles?imdb=tt0133093
# Filter by language
GET https://subtitles.website/strapi/api/search/subtitles?title=Matrix&language=en
# Filter by format
GET https://subtitles.website/strapi/api/search/subtitles?title=Matrix&format=srt
Response example:
{
"data": [
{
"id": "abc123",
"release": "The.Matrix.1999.BluRay.en",
"film_title": "The Matrix",
"downloads": 150,
"language": { "code": "en", "name": "English" },
"format": "srt",
"download_url": "/uploads/subtitle.srt"
}
]
}
Note: Guest users are limited to 10 API requests/day. Register for free to get 50/day, or upgrade to VIP for 1000/day.