Well, you need multiple things. First off, a very good understanding of RBXLua and regular Lua. You're going to need to create a screengui that supports flipping through pages. You're also going to need to know the Web APIs required.
List of Web APIs
In this particular case you need to use the Catalog API.
Catalog API
You will need to use a proxy to access roblox's web apis or you'll get an error.
When using the Catalog API here's how a JSON Callback looks:
03 | "Url" : "/Cuter-Fox-item?id=66747327" , |
05 | "Updated" : "4 months ago" , |
06 | "Favorited" : "0 times" , |
10 | "CreatorUrl" : "/User.aspx?ID=1" , |
14 | "ContentRatingTypeID" : 0 , |
17 | "CreatedDate" : "\/Date(1322616958803)\/" , |
18 | "UpdatedDate" : "\/Date(1322701833910)\/" , |
20 | "IsPublicDomain" : false , |
22 | "IsLimitedUnique" : false , |
23 | "MinimumMembershipLevel" : 1 } |
The link I posted above related to the Catalog API should be all you need to get started.
Hope I helped :)