API Documentation
Welcome to TorrentControl API
This is a public API that provides access to our movie and series database, including torrent information. You can use this API to build your own applications and services.
Base URL
https://torrentcontrol.pw/api/v1
Rate Limiting
Usage Policy
This API is provided for public use free of charge. You are welcome to integrate it into your applications and services. However, please note the following:
- Do not abuse the API with excessive requests
- Respect the rate limits
- Do not use the API for illegal purposes
- We reserve the right to block IPs that abuse the service
Example of some available endpoints
/api/v1/contents
Get a paginated list of movies and series
Query Parameters
page
- Page number (default: 1)per_page
- Items per page (default: 20, max: 100)type
- Filter by type: "movie" or "series"search
- Search by title
/api/v1/contents/{id}
Get detailed information about a specific content including all torrents
/api/v1/torrents
Get a flat list of torrents with content information (no nesting)
Query Parameters
page
- Page number (default: 1)per_page
- Number of items per page (default: 20, max 20)type
- Filter by type: "movie" or "series"search
- Advanced search with multiple features:- SxxExx format: Search for specific episodes (e.g.,
S01E05
,s02e10
) - Combined search: Use series title with episode (e.g.,
Breaking S01E05
) - AND logic: Multiple keywords require all words to match (e.g.,
Dark Knight
) - File names: Also searches in torrent file names
- SxxExx format: Search for specific episodes (e.g.,
Example Request
curl -X GET "https://torrentcontrol.pw/api/v1/contents?type=movie&per_page=10" \
-H "Accept: application/json"
OpenAPI Specification
For complete API documentation in OpenAPI format:
Download OpenAPI Specification