← 返回首页
Displaying user fiddles | JSFiddle Docs
On this page
For the complete documentation index, see llms.txt. This page is also available as Markdown.
Copy
On this page
  1. API

Displaying user fiddles

It allows to create plugins displaying fiddles created by specific user

GET https://jsfiddle.net/api/user/:username/demo/list.json

Query Parameters

Name
Type
Description

callback

string

Function name for cross-domain. If no callback is provided, standard JSON will be returned. Default: None

start

integer

Offeset element. Default: 0

limit

integer

Number of elements to return. Default: 10

sort

string

Sorting type. date, alphabetical or framwork Default: date

order

string

desc or asc Default: asc

framework

string

Filter framework. Default: None

200
Copy
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 });

Last updated 7 years ago