It allows to create plugins displaying fiddles created by specific user.
URL structure: http://jsfiddle.net/api/user/{username}/demo/list.json/
One may change its result by changing following GET parameters:
Api({
"status": "ok",
"list": [
{
"description": "...",
"author": "{username}",
"url": "...",
"created": "...",
"framework": "...",
"version": 123, // base version number
"latest_version": 234, // latest version number
"title": "..."
},
// ...
],
"overallResultSetCount": 12 // number of the results
});
http://jsfiddle.net/api/user/zalun/demo/list.json?callback=Api&sort=framework&start=5&limit=5
Sample implementation by Ryan (@ryanflorence) and Piotr (@zalun): http://jsfiddle.net/rpflorence/49rxW/, for more advanced usage: http://jsfiddle.net/zalun/49rxW/9/