Category: DEV Wesimplifycomplexity

  • YTS API Documentation, Complete Guide

    YTS — YIFY HD Movies

    YTS API Documentation

    A lightweight REST service providing programmatic access to YTS movies data. Free to use in your apps and websites — no API key required. Please cache responses where possible and keep request rates reasonable.

    🔓 No API Key Required
    💾 Free to Use
    ⚡ REST API v2
    🎬 JSON / JSONP / XML

    Base URL (v2)

    https://yts.bz/api/v2/

    ⚠️ Source Reference

    This documentation is based on the official YTS API available at yts.bz/api. If you are using an older base URL, please update your integration to https://yts.bz/api/v2/ — older endpoints may be retired in the future.

    All Endpoints

    Universal Response Structure

    All API endpoints return the same base data structure.

    Returned Key Description Example
    status The returned status for the API call — either 'ok' or 'error' ok
    status_message Either the error message or the successful message Query was successful
    data If status is 'ok', the API query results will be inside data data

    HTTP GET

    🎬 List Movies

    Endpoints
    https://yts.bz/api/v2/list_movies.json
    https://yts.bz/api/v2/list_movies.jsonp
    https://yts.bz/api/v2/list_movies.xml

    Used to list and search through all available movies. Can sort, filter, search and order the results.

    Endpoint Parameters
    Parameter Required Type Default Description
    limit optional Integer 1–50 20 The limit of results per page
    page optional Integer (Unsigned) 1 Paginate results — e.g. limit=15&page=2 shows movies 15–30
    quality optional
    480p
    720p
    1080p
    1080p.x265
    2160p
    3D
    All Filter by a given quality
    minimum_rating optional Integer 0–9 0 Filter by a given minimum IMDb rating
    query_term optional String 0 Movie search — matches on: Movie Title / IMDb Code, Actor Name / IMDb Code, Director Name / IMDb Code
    genre optional String All Filter by a given genre — see imdb.com/genre for full list
    sort_by optional
    title
    year
    rating
    peers
    seeds
    download_count
    like_count
    date_added
    date_added Sort results by chosen value
    order_by optional desc
    asc
    desc Order results ascending or descending
    with_rt_ratings optional Boolean false Include Rotten Tomatoes rating in results

    Examples
    https://yts.bz/api/v2/list_movies.json?quality=3D

    Returns the latest 20 3D movies using JSON format

    https://yts.bz/api/v2/list_movies.xml?sort=seeds&limit=15

    Returns maximum 15 movies sorted by seeds in XML format

    Response Data
    Key Name Description Example
    movie_count Total movie count results for your query 2131
    limit The limit of results per page that has been set 20
    page_number The current page number you are viewing 1
    movies An array holding multiple movies and their relative information ARRAY

    🧲 Constructing Magnet URLs

    magnet:?xt=urn:btih:TORRENT_HASH&dn=Url+Encoded+Movie+Name&tr=https://tracker.one:1234/announce&tr=udp://tracker.two:80

    Recommended Trackers
    udp://tracker.opentrackr.org:1337/announce udp://tracker.torrent.eu.org:451/announce
    udp://tracker.dler.org:6969/announce udp://open.stealth.si:80/announce
    udp://open.demonii.com:1337/announce https://tracker.moeblog.cn:443/announce
    udp://open.dstud.io:6969/announce udp://tracker.srv00.com:6969/announce
    https://tracker.zhuqiy.com:443/announce https://tracker.pmman.tech:443/announce

    HTTP GET

    📋 Movie Details

    https://yts.bz/api/v2/movie_details.json
    https://yts.bz/api/v2/movie_details.jsonp
    https://yts.bz/api/v2/movie_details.xml

    Returns the information about a specific movie.

    Endpoint Parameters
    Parameter Required Type Default Description
    movie_id or imdb_id optional Integer (Unsigned) null The YTS ID of the movie or the IMDB ID
    with_images optional Boolean false When set, the data returned will include added image URLs
    with_cast optional Boolean false When set, the data returned will include information about the cast
    Examples
    https://yts.bz/api/v2/movie_details.json?movie_id=10

    Returns basic information about the movie with ID of 10

    https://yts.bz/api/v2/movie_details.json?movie_id=15&with_images=true&with_cast=true

    Returns full information (with image URLs and cast information) about the movie with ID of 15

    🧲 Constructing Magnet URLs

    magnet:?xt=urn:btih:TORRENT_HASH&dn=Url+Encoded+Movie+Name&tr=http://track.one:1234/announce&tr=udp://track.two:80

    Recommended Trackers
    udp://glotorrents.pw:6969/announce udp://tracker.opentrackr.org:1337/announce
    udp://torrent.gresille.org:80/announce udp://tracker.openbittorrent.com:80
    udp://tracker.coppersurfer.tk:6969 udp://tracker.leechers-paradise.org:6969
    udp://p4p.arenabg.ch:1337 udp://tracker.internetwarriors.net:1337

    HTTP GET

    💡 Movie Suggestions

    https://yts.bz/api/v2/movie_suggestions.json
    https://yts.bz/api/v2/movie_suggestions.jsonp
    https://yts.bz/api/v2/movie_suggestions.xml

    Returns 4 related movies as suggestions for the user.

    Endpoint Parameters
    Parameter Required Type Default Description
    movie_id optional Integer (Unsigned) null The ID of the movie
    Example
    https://yts.bz/api/v2/movie_suggestions.json?movie_id=10

    Returns 4 related movies to the movie with ID of 10

    HTTP GET

    🛡️ Movie Parental Guides

    https://yts.bz/api/v2/movie_parental_guides.json
    https://yts.bz/api/v2/movie_parental_guides.jsonp
    https://yts.bz/api/v2/movie_parental_guides.xml

    Returns all the parental guide ratings for the specified movie.

    Endpoint Parameters
    Parameter Required Type Default Description
    movie_id optional Integer (Unsigned) null The ID of the movie
    Example
    https://yts.bz/api/v2/movie_parental_guides.json?movie_id=10

    Returns the parental guides for the movie with the ID of 10

    📚 Official Source

    This documentation is based on the official YTS API reference.

    yts.bz/api ↗

    🔗 Supported Formats
    JSON
    JSONP
    XML

    All endpoints support JSON, JSONP and XML response formats.

    💬 Support & Feedback

    Found a bug or have questions? Get in touch with the YTS team directly.

    Contact YTS ↗

    Quick Reference — All Endpoints
    v2/list_movies.json List, search, sort and filter all available movies
    v2/movie_details.json Full details for a specific movie by YTS ID or IMDB ID
    v2/movie_suggestions.json Returns 4 related movie suggestions for a given movie ID
    v2/movie_parental_guides.json All parental guide ratings for a specified movie

    YTS
    ·
    API Docs
    ·
    Blog
    ·
    DMCA
    ·
    RSS
    ·
    Contact

    YTS © 2011–2026. By using this site you agree to and accept the User Agreement.

  • Stripe – The Future of Commerce: Asia Pacific Virtual Summit 2025

    Event Overview

    Date: November 6, 2025
    Format: Virtual Event
    Duration: Half-day online summit
    Target Audience: Asia Pacific businesses, technology leaders, and commerce professionals


    Schedule by Region

    Region Time Zone Event Hours
    India IST 8:30 a.m. – 11:30 a.m.
    Southeast Asia SGT 11:00 a.m. – 2:00 p.m.
    Australia AEDT 2:00 p.m. – 5:00 p.m.
    New Zealand NZDT 4:00 p.m. – 7:00 p.m.

    Event Description

    This free half-day online event is designed for Asia Pacific businesses to connect with fellow business and technology leaders. Attendees will gain valuable insights and explore the latest trends shaping the future of payments and financial technology.

    Participants can watch keynotes, breakout sessions, and demos at their own pace, experiencing the best of Stripe Tour in an online format.


    Key Topics

    The event explores the latest trends in AI, stablecoins, agentic commerce, and global expansion. Attendees will get an inside look at Stripe’s newest product innovations and hear from experts and fast-growing companies across Asia Pacific.

    Main Focus Areas:

    • Trends shaping the next decade of payments and trade—including the rise of AI and stablecoins
    • Lessons from founders of fast-growing AI startups in Asia Pacific
    • Strategies for scaling globally
    • Maximising conversion and minimising fraud with AI-powered payments
    • Tools and insights to drive smarter pricing and monetisation strategies

    Why Attend

    Benefit Description
    Explore New Growth Opportunities Learn about emerging ideas and tools shaping payments in Asia-Pacific, plus creative strategies to use AI and financial technology
    Solve Business Challenges Discover how to optimise payments and pricing, create new customer experiences, and test new business models
    Tailored Content Watch breakout sessions on topics of choice, including payments optimisation, embedded finance for SaaS, and strategic pricing
    Expert Access Watch product demos and interact live with Stripe experts

    Live Sessions Schedule

    Opening Keynote

    Time: 8:30 a.m. IST | 11:00 a.m. SGT | 2:00 p.m. AEDT | 4:00 p.m. NZDT
    Title: The Future of Commerce
    Content: Trends expected to shape the next decade of payments and global trade: AI and stablecoins

    Regional Product Keynotes

    Session Time (Multiple Zones) Focus
    Southeast Asia Focus 9:00 a.m. IST | 11:30 a.m. SGT New Stripe products for Southeast Asian revenue growth
    Australia & New Zealand Focus 2:30 p.m. AEDT | 4:30 p.m. NZDT New Stripe products for ANZ revenue growth

    On-Demand Breakout Sessions

    Attendees can watch a range of breakout sessions and demos on demand, exploring different tracks covering AI, global growth, stablecoins, pricing strategies, and SaaS financial services.

    Featured Sessions:

    Agentic Commerce: The Next Era of Intelligent Buying
    How agentic AI will transform customer and business decision-making as LLMs become central to discovery and search.

    Why Businesses Can’t Afford to Ignore Stablecoins
    Exploration of how stablecoins are reshaping global money movement.

    The Asia-Pacific AI Landscape
    Insights from founders of Asia Pacific’s fastest-growing AI startups on managing rapid growth.

    Borderless Businesses: Playbooks for Cross-Border Growth
    How businesses accelerate global expansion amid uncertainty and the Stripe solutions powering them.

    Monetising Financial Services for SaaS Platforms
    Latest SaaS trends, product updates, and launches for platforms across Australia and Southeast Asia.

    Product Roadmap: Payments
    New payments upgrades for Australia and Southeast Asia designed to grow revenue, lower costs, and improve customer experience.

    The Science Behind Successful Pricing Strategies
    Strategic pricing insights and Stripe Billing data from 300K+ fast-growing companies revealing monetisation trends.


    Featured Speakers

    Name Company Position
    Peak Ji Manus AI Cofounder and Chief Scientist
    Sarita Singh Stripe Managing Director—Southeast Asia, India, Greater China and South Korea
    Maia Josebachvili Stripe Chief Revenue Officer, AI
    Michael Lansdown amaysim Director CX
    Sivaramakrishnan Iswaran Zoho Corporation Global Head, Zoho Finance and Operations
    Karl Durrance Stripe Managing Director, Australia and New Zealand
    Paul Harapin Stripe Chief Revenue Officer, Asia Pacific
    Gaurav Sharma SaaS Labs Founder and CEO
    Julia Edwards-Smith Xero GM Product Marketing, Growth
    Mai Leduc Blount Bridge Head of Product

    Registration

    Cost: Free
    Format: Virtual attendance with live interaction capabilities
    Access: On-demand content available for flexible viewing
    Registration Link

     

  • Red Hat AI roadshow, Sydney, June 2025

    REGISTER HERE

    A single day experience, the Red Hat AI roadshow gives you insight into how to accelerate time to value of AI-enabled applications at scale across hybrid cloud. So you can increase team efficiency and productivity, enhance customer experiences, and drive innovation with enterprise-ready AI, including generative and predictive AI.

    As part of the roadshow attendees will have the opportunity to build, train, and deploy AI models and integrate them into an application with a hands-on lab. They’ll experience what it is like to go from an idea to building an accurate model to having a production-ready application.

    In this session you will:

    • How generative AI is being used as a strategic enabler
    • Challenges and considerations to be aware of when building an end-to-end AI platform
    • How Red Hat AI accelerates the development and delivery of AI solutions across hybrid-cloud environments
    • A model alignment approach that does not require specialized data science skills
    • Solution patterns IT teams can use to support rapid, cost-efficient, and secure AI development and usage
    • Hands-on experience working with a MLOps platform: Build and train different model types, integrate them into a frontend application to create new features, and test the application as a user. No AI experience is required

    Who should attend:

    • Data Engineers, Data Scientists, ML engineers
    • Developers and Developer team leads
    • Application architects, Enterprise architects
    • Infrastructure architects, Infrastructure specialists
    • IT decision makers, IT directors

    ImportantPlease bring your personal laptop (No VPN) to access this hands-on experience. Kindly ensure that your laptop should have a modern web browser that can operate without a corporate VPN connection. While our preferred browser is Google Chrome, Firefox, Safari, and Edge should also be compatible.

    Know before you go

    Operations, developers, and data science practitioners doing the hands-on lab should have these suggested tools and knowledge of these areas:

    • A laptop computer running Windows, MacOS, or Linux with the Firefox or Chrome-based web browser (a Chrome-based browser is preferred)
    • Entry-level Kubernetes concepts
    • A general understanding of Linux containers (e.g., Docker, CRI-O, etc.)
    • General knowledge of AI terminology (e.g., machine learning, deep learning, foundation models, etc.)
    • No AI experience is required

    Note:
    Red Hat is committed to the health and safety of our customers, partners, and employees. All attendees will be expected to follow Red Hat and local guidelines regarding COVID-19. Please do not attend if you are feeling ill or have any symptoms of a viral infection. Please note that all protocols are subject to change.

     

    Agenda

    Sheraton Grand Sydney Hyde Park
    161 Elizabeth St,
    Sydney NSW 2000

    TIME AGENDA
    9:30 AM – 10:00 AM Guest arrival and Registration
    10:00 AM – 10:15 AM Welcome
    10:15 AM – 10:45 AM Introduction to Red Hat’s AI – our Vision and Portfolio
    10:45 AM – 11:15 AM Introduction to Red Hat Inference Server and Model-as-a-Service
    11:15 AM – 11:45 AM Introduction to Instruct Lab
    11:45 AM – 12:30 PM Hands on with Red Hat OpenShift AI
    12:30 PM – 1:00 PM Lunch Break
    1:00 PM – 2:00 PM Continue with Hands on Lab
    2:00 PM – 2:30 PM Coffee break
    2:30 PM Continue with Hands on Lab & Closing presentation

    SPEAKERS