Hello guys! I’m excited to be writing my debut article for WPKube and today I’m going to talk to you about Envato’s Marketplaces API. Envato is the largest and, in my opinion, possibly one of the most relevant online companies today when it comes to premium WordPress items. With Themeforest.net currently standing at over 4000 premium WordPress themes and Codecanyon.net with over 2500 WordPress plugins, interacting with the marketplaces has become even more important for advertisers in recent times.
Thankfully, Envato allows and encourages this form of interaction via its Marketplaces API. You can check out the official documentation here; http://extras.envato.com/api/. In this article I will cover the public side of this API, including how to use it and provide you with a useful snippet you can customise and drop right into your own projects. At the end I will also share my top 4 data channels in the API, showing you how to use them and what data they will return. Please note that a basic knowledge of using PHP objects will be required. Ready? Let’s begin then.
There are two sides to the Envato Marketplaces API. The first is the public set (which I will cover in this article) and the other is the private set. The main difference between them is the fact that the private one requires a valid API key. Check out the other differences below;
I have only listed a couple of the most useful above, but there are many more. Read the documentation to find out more.
Let’s dive in head first! The structure for all our code in this tutorial will be very similar; we will use PHP cURL to retrieve JSON data from the API, which we will then convert to a PHP object and use. Below is an example of the basic anatomy of our functions (this particular function will return all the CodeCanyon categories with the number of files in each);
function number_of_files_codecanyon() { // Open cURL channel $ch = curl_init(); // Set cURL options curl_setopt($ch, CURLOPT_URL, "http://marketplace.envato.com/api/edge/number-of-files:codecanyon.json"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Decode returned JSON $output = json_decode(curl_exec($ch), true); // Close Channel curl_close($ch); // Return output return $output; }
When we look at specific uses later you simply need to change the URL on line 6 to suit your needs. To view this data we need to print it to screen (as this is a PHP object be sure to use print_r and not echo). Below is an example of how to print the output from our function as well as the screen output;
echo '<pre>'; print_r( number_of_files_codecanyon() ); echo '</pre>';
Output (don’t worry about the looks for now, we will manipulate the data later on);
stdClass Object ( [number-of-files] => Array ( [0] => stdClass Object ( [category] => JavaScript [number_of_files] => 1402 [url] => http://codecanyon.net/category/javascript ) [1] => stdClass Object ( [category] => PHP Scripts [number_of_files] => 2096 [url] => http://codecanyon.net/category/php-scripts ) [2] => stdClass Object ( [category] => .NET [number_of_files] => 132 [url] => http://codecanyon.net/category/net ) . . . etc . . .
… And here is an example of how you could call and use the data from the object.
// Retrieve data from function $json_data = number_of_files_codecanyon(); // Count number of array items (-1 as the object is zero-based) $data_count = count($json_data['number-of-files']) -1; // Output as list echo '<ul>'; // Echo code for every category for($i = 0; $i <= $data_count; $i++) { // Retrieve and print data echo '<li><a href="'.$json_data['number-of-files'][$i]['url'].'">',$json_data['number-of-files'][$i]['category'],'</a> - ',$json_data['number-of-files'][$i]['number_of_files'],'</li>'; } echo '/<ul>';
This will return the following HTML;
Although I am not going to go through every possible data channel here, all of them are explained in the API Documentation.
Array ( [item] => Array ( [id] => 5850316 [item] => TCWP – Supercharged Twitter Card Management for WP [url] => http://codecanyon.net/item/tcwp-supercharged-twitter-card-management-for-wp/5850316 [user] => InfinityCode [thumbnail] => http://3.s3.envato.com/files/87961812/TCWPLogo.png [sales] => 13 [rating] => 5.0 [rating_decimal] => 5.00 [cost] => 18.00 [uploaded_on] => Mon Oct 14 18:16:01 +1100 2013 [last_update] => Fri May 02 05:47:29 +1000 2014 [tags] => cards, customer, embed, integration, meta, outreach, photo, player, product, seo, social, social media, summary, twitter, twitter cards [category] => wordpress/social-networking [live_preview_url] => http://1.s3.envato.com/files/89907849/TCWPHeader.jpg [live_preview_video_url] => http://0.s3.envato.com/files/90359042/TCWPVideoPreview720p.mp4 ) )
Array ( [features] => Array ( [featured_file] => Array ( [id] => 7157644 [item] => FlatAds - Classified AdsWordPress Theme [url] => http://themeforest.net/item/flatads-classified-adswordpress-theme/7157644 [user] => Themes-Dojo [thumbnail] => http://2.s3.envato.com/files/90383318/80x80.jpg [sales] => 200 [rating] => 4.0 [rating_decimal] => 3.80 [cost] => 55.00 [uploaded_on] => Sun Mar 23 15:13:01 +1100 2014 [last_update] => Sun May 04 23:02:49 +1000 2014 [tags] => ads, advertising, bbpress, business, classified, classified ads, corporate, database, directory, listing, marketing, portal, responsive, woocommerce, wpml [category] => wordpress/corporate/directory-listings [live_preview_url] => http://2.s3.envato.com/files/90383319/images/01_preview.__large_preview.jpg ) [featured_author] => Array ( [id] => 379972 [user] => biyanpasau [url] => http://themeforest.net/user/biyanpasau [thumbnail] => http://2.s3.envato.com/files/63718853/ava.png ) [free_file] => Array ( [id] => 4114650 [item] => Emotion - Responsive HTML5/CSS3 Template [url] => http://themeforest.net/item/emotion-responsive-html5css3-template/4114650 [user] => dan_fisher [thumbnail] => http://0.s3.envato.com/files/58994756/thumb.jpg [sales] => 101 [rating] => 5.0 [rating_decimal] => 5.00 [cost] => 15.00 [uploaded_on] => Tue Feb 26 08:23:51 +1100 2013 [last_update] => Wed Jun 12 21:58:55 +1000 2013 [tags] => blog, creative, css3, emotion, flexible, green, html5, minimal, modern, multipurpose, perfect, professional, responsive, slider [category] => site-templates/creative/portfolio [live_preview_url] => http://2.s3.envato.com/files/58994760/preview.__large_preview.jpg ) ) )
Array ( [popular] => Array ( [items_last_week] => Array ( [0] => Array ( [id] => 49745 [item] => Flash Banner Creator and Rotator [url] => http://activeden.net/item/flash-banner-creator-and-rotator/49745 [user] => skyplugins [thumbnail] => http://3.s3.envato.com/files/143908.jpg [sales] => 4 [rating] => 4.5 [rating_decimal] => 4.50 [cost] => 15.00 [uploaded_on] => Fri Jul 17 05:17:52 +1000 2009 [last_update] => Sun May 16 12:49:50 +1000 2010 [tags] => ads, advertising, banner creator, black, blue, easy to use, flash ad creator, intro, intro builder, orange, red, slideshow, slideshow, xml banner maker, xml banner rotator [category] => flash/image-viewers/banner-rotators ) . . . & 35 more . . . [items_last_three_months] => Array ( [0] => Array ( [id] => 6122555 [item] => Professional Banner Ads 1 [url] => http://activeden.net/item/professional-banner-ads-1/6122555 [user] => toosq [thumbnail] => http://1.s3.envato.com/files/72736598/Thumbnail.jpg [sales] => 27 [rating] => 5.0 [rating_decimal] => 4.83 [cost] => 5.00 [uploaded_on] => Sat Nov 16 05:22:23 +1100 2013 [last_update] => Sat Nov 16 05:36:24 +1100 2013 [tags] => ad, adwords, banner, envato, google, graphic, image, logo, sale [category] => flash/animations [live_preview_url] => http://1.s3.envato.com/files/72736599/PreviewImage.jpg ) . . . & 46 more . . . [authors_last_month] => Array ( [0] => Array ( [item] => barisintepe [sales] => 53 [url] => http://activeden.net/user/barisintepe [image] => http://0.s3.envato.com/files/1312722/my_logo.png ) . . . & 18 more . . .
Array ( [search] => Array ( [0] => Array ( [id] => 5150861 [description] => Positive & Happy [url] => http://audiojungle.net/item/positive-happy/5150861 [type] => music/corporate/motivational [sales] => 3 [rating] => 0.0 ) . . . & 49 more . . .
That’s it! I hope you have found this very brief introduction to the Envato API useful and if you have any questions or are unclear about something simply ask me below or tweet me @harribellthomas.
Trying to figure out how to start an online course so that you can share…
Considering using LearnDash to create online course content with WordPress? LearnDash is a popular WordPress…
WordPress XML files see a lot of use for me as a content creator, and…
If you’re looking for a way to deliver an online course, complete with all the…
Search Engine Optimization (SEO) is crucial for any website that wants to maximize its traffic…
Kinsta is a notable brand in the WordPress hosting space. The standout aspect of the…
View Comments
Thanks for sharing this, Harri! Super special thanks for the cURL snippet! That had been bugging me for a while.
You're welcome! Glad you found this information helpful.
thanks for the detailed article. I'm wondering did you use API for getting number 4,000 themes and 2,500 plugins, or this information is official?
Hello Tony,
Sorry for the delay in replying.
These figures aren't actually from the API, although they could be retrieved if so wanted. These figures came from Themeforest and Codecanyon directly.
For example, if you navigate to this link - http://themeforest.net/category/wordpress - you will see next to 'WordPress Themes & Templates' the number of items. It was from here I got my information.
Thanks,
Harri
Thanks for the hint :).
Can't believe how I could overlooked this page.
Glad I could help :)
Very Good article thanks for share
You are very welcome! :)
Could you please demonstrate this example using new API?
Thanks, this is very helpful. How to get full description, platform (eg. Bootstrap or Foundation) and comments of an item? Whats is the URL?