Overview
The Breeziee API was created to allow applications to easily interact with and add to Breeziee's data. We want to make it easy for you to build applications powered by Breeziee, pull content into other clients and services, or integrate Breeziee's data with external websites. The API is free to use, but is subject to our standard Privacy Policy and Terms of Service. We currently do not impose any rate limiting on clients using our API.
Methods
/api/add.php
URL: http://breeziee.com/api/add.php
Usage: Adding A File
Request Method: GET
Special Notes: If an account for the email address given does not exist, it will be created with the password specified. All parameters are required.
Parameters: email, pass, name (of the item, urlencoded), desc (of the item, urlencoded), price, link (to the item, urlencoded)
On Success Returns: [1](id of the file created)
On Failure Returns: [0](error code)
/api/file.php
URL: http://breeziee.com/api/file.php
Usage: Getting A File's Details
Request Method: GET
Special Notes: All parameters are required.
Parameters: id
On Success Returns: [1](file name)(file description)(file price)(link to the payment gateway for this file)
On Failure Returns: [0](error code)
/api/search.php
URL: http://breeziee.com/api/search.php
Usage: Searching For A File or Displaying The Directory
Request Method: GET
Special Notes: All parameters are required. Limit of 25 results.
Parameters: q (search query, leave empty if you want the directory)
On Success Returns: RSS Output Of Results
On Failure Returns: [0](error code)