Understand supported methods and site-specific capabilities
mainEach supported site has different capabilities regarding trending content, categories, and search limits. These configurations determine which API methods will work for a given site keyword.
Key Configuration Fields:
trending_available: Boolean indicating if trending content can be fetched.trending_category: Boolean indicating if trending content can be filtered by category.search_by_category: Boolean indicating if searches can be scoped to a category.recent_available: Boolean indicating if recent uploads can be fetched.recent_category_available: Boolean indicating if recent uploads can be filtered by category.categories: A list of supported category strings (e.g.,"anime","movies","games").limit: The default maximum number of results returned for that site.
To change these defaults, modify helper/is_site_available.py.
{
"1337x": {
"trending_available": true,
"trending_category": true,
"search_by_category": true,
"recent_available": true,
"recent_category_available": true,
"categories": ["anime", "music", "games", "tv", "apps", "documentaries", "other", "xxx", "movies"],
"limit": 100
}
}