Welcome to Setonia


We are a instant product search engine. All you need to do is start typing within the search box above.

Our current endpoints are:
http://setonia.com/V1/movies.php?q={QUERY}&limit={number of results you want to see}
http://setonia.com/V1/sports.php?q={QUERY}&limit={number of results you want to see}
http://setonia.com/V1/search.php?q={QUERY}&limit={number of results you want to see}

    
    $results = json_decode(file_get_contents("http://setonia.com/V1/search.php?q=".$yourqueryurl."&limit=10"), 1);
    
    foreach ($results as $result) {
        echo $result['Title'];
        echo $result['URL'];
        echo $result['PhotoURL'];
    }