Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots/feed?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots/feed",
    "previous": "https://api.plotly.com/v2/plots/feed",
    "results": [
        {
            "creation_time": "2015-02-16T21:57:44.287131Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~etpinard/254.embed",
            "fid": "etpinard:254",
            "filename": "s5_cyclist-time-progression",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F254%2F9_7B1G1IBW0H9CAO7PVG3W40E64RC7OE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F254%2F2_0RZ4CP7KJ837B6CVQ8MKYZF02VQWPY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F254%2F8_L90RXSMT41CXGWCPRCGES7RCXT4KR9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F254%2F9_7B1G1IBW0H9CAO7PVG3W40E64RC7OE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/etpinard:254",
                "plots": "https://api.plotly.com/v2/plots/etpinard:254",
                "parent": "https://api.plotly.com/v2/folders/home?user=etpinard"
            },
            "owner": "etpinard",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Fig 5.3: Montral bike traffic daily progression<br>from the most trafficked site to the least in 2013<br>",
            "views": 49725,
            "web_url": "https://chart-studio.plotly.com/~etpinard/254/fig-53-montral-bike-traffic-daily-progression-from-the-most-trafficked-site-to-t/",
            "world_readable": true,
            "date_modified": "2015-07-10T14:49:31.319Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~etpinard/254/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~etpinard",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/488N3JU5NZ4VLP8UBAE2YFND1MMKQF.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "etpinard",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-02-10 20:13:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "etpinard",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            },
            "figure": null,
            "autosize": null,
            "width": null,
            "height": null
        },
        {
            "creation_time": "2013-03-19T21:24:07.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cparmer2/489.embed",
            "fid": "cparmer2:489",
            "filename": "Click to enter Plot title",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cparmer2%2F489%2F9_C8DHBYSI72GJRSEV4OBHA33D1UMW1P.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cparmer2%2F489%2F2_MDWZALLGJG86A3IDYSR77FSZI7N2ZA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cparmer2%2F489%2F8_8H3JG6Y2KIREW320OEB94QLHG1FRQ0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cparmer2%2F489%2F9_C8DHBYSI72GJRSEV4OBHA33D1UMW1P.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cparmer2:489",
                "plots": "https://api.plotly.com/v2/plots/cparmer2:489",
                "parent": "https://api.plotly.com/v2/folders/home?user=cparmer2"
            },
            "owner": "cparmer2",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "state 2 vs state 1",
            "views": 557,
            "web_url": "https://chart-studio.plotly.com/~cparmer2/489/state-2-vs-state-1/",
            "world_readable": true,
            "date_modified": "2015-06-29T08:58:06.125Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cparmer2/489/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cparmer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-11-01 00:23:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cparmer2",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2015-05-12T15:28:54.395148Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~alexander.daniel/64.embed",
            "fid": "alexander.daniel:64",
            "filename": "z",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/alexander.daniel%2F64%2F9_KMC9KPZ0CL4CZ39HALR2QEFXJHM3KP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/alexander.daniel%2F64%2F2_2BMQCTDYYPEDCL9PEP4AV85E6NEK4X.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/alexander.daniel%2F64%2F8_4G8V8IEM3H6ULSTBDH7INW1WBRIHYU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/alexander.daniel%2F64%2F9_KMC9KPZ0CL4CZ39HALR2QEFXJHM3KP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/alexander.daniel:64",
                "plots": "https://api.plotly.com/v2/plots/alexander.daniel:64",
                "parent": "https://api.plotly.com/v2/folders/home?user=alexander.daniel"
            },
            "owner": "alexander.daniel",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Fractal Mountains n Valleys",
            "views": 800,
            "web_url": "https://chart-studio.plotly.com/~alexander.daniel/64/fractal-mountains-n-valleys/",
            "world_readable": true,
            "date_modified": "2015-07-20T20:13:08.071Z",
            "collaborators": {
                "results": [
                    {
                        "profile_url": "https://chart-studio.plotly.com/~benpost",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                        "bio": "",
                        "nickname": "",
                        "website": "",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2013-10-02 15:59:55",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "benpost",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    },
                    {
                        "profile_url": "https://chart-studio.plotly.com/~alex",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1420665014.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                        "bio": "I work at Plotly, and I love helping people understand and share their data. What can we help you with? Drop me a line at alex@plot.ly !",
                        "nickname": "Alex Johnson",
                        "website": "",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2013-01-15 06:39:48",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "alex",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    },
                    {
                        "profile_url": "https://chart-studio.plotly.com/~alexandrev",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                        "bio": "",
                        "nickname": "",
                        "website": "",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2015-05-20 20:19:34",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "alexandrev",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    }
                ],
                "count": 3
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~alexander.daniel/64/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~alexander.daniel",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1412356641.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "Proud owner of a Plotly Professional Account",
                "nickname": "Alexander Daniel",
                "website": "http://lesinstruments.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-10-25 21:15:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "alexander.daniel",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2014-11-03T23:19:05.005030Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dreamshot/625.embed",
            "fid": "Dreamshot:625",
            "filename": "World Populations (1800-2100) With UN Projections",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F625%2F9_FOXFDTDU4HAGBR6ABQ3TRVRP1WEQLD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F625%2F2_2986X6906KRF2FPHSNJQB907XJDY0V.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F625%2F8_DEFOIET3K35NPLDF3KU9VDXDBOMEEZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F625%2F9_FOXFDTDU4HAGBR6ABQ3TRVRP1WEQLD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dreamshot:625",
                "plots": "https://api.plotly.com/v2/plots/Dreamshot:625",
                "parent": "https://api.plotly.com/v2/folders/home?user=Dreamshot"
            },
            "owner": "Dreamshot",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>World Population: 1800 to 2100",
            "views": 4736,
            "web_url": "https://chart-studio.plotly.com/~Dreamshot/625/world-population-1800-to-2100/",
            "world_readable": true,
            "date_modified": "2015-07-09T08:56:20.538Z",
            "collaborators": {
                "results": [
                    {
                        "profile_url": "https://chart-studio.plotly.com/~MattSundquist",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                        "bio": "",
                        "nickname": "",
                        "website": "matthewsundquist.com",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2012-12-19 03:08:16",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "MattSundquist",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    }
                ],
                "count": 1
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dreamshot/625/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Dreamshot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1396308157.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "Meteorologist with a flair for data analysis.",
                "nickname": "Ben",
                "website": "https://twitter.com/BenNollWeather",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-09-04 01:51:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dreamshot",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2014-07-13T04:03:33.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~stkstoyanov/13.embed",
            "fid": "stkstoyanov:13",
            "filename": "Immigration to the United States Chart",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/stkstoyanov/13/9_Z013ACT65IAHFOB5EMR7TMYHCGE8TY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/stkstoyanov%2F13%2F2_2RI3SC785HOWD7OLSHZLCPJO8XD2U0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/stkstoyanov%2F13%2F8_40CDJAJII71KMPR38IXBKYRT6VBTK5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/stkstoyanov/13/9_Z013ACT65IAHFOB5EMR7TMYHCGE8TY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/stkstoyanov:13",
                "plots": "https://api.plotly.com/v2/plots/stkstoyanov:13",
                "parent": "https://api.plotly.com/v2/folders/stkstoyanov:14"
            },
            "owner": "stkstoyanov",
            "parent": 14,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Immigration to the United States",
            "views": 6459,
            "web_url": "https://chart-studio.plotly.com/~stkstoyanov/13/immigration-to-the-united-states/",
            "world_readable": true,
            "date_modified": "2015-07-05T02:13:04.863Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~stkstoyanov/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~stkstoyanov",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-06-30 02:19:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "stkstoyanov",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2014-05-27T19:40:33.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bronsolo/63.embed",
            "fid": "bronsolo:63",
            "filename": "Mount Bruno Elevation",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bronsolo%2F63%2F9_788ACMHDWOGRWTUUKCD8M23AYNH6YB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bronsolo%2F63%2F2_PM3DTRJUBNKCINI30PXLA0D21K3N3B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bronsolo%2F63%2F8_WOCPZSG066X0BGNA5IBVTK37OUTXM1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bronsolo%2F63%2F9_788ACMHDWOGRWTUUKCD8M23AYNH6YB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bronsolo:63",
                "plots": "https://api.plotly.com/v2/plots/bronsolo:63",
                "parent": "https://api.plotly.com/v2/folders/home?user=bronsolo"
            },
            "owner": "bronsolo",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Latitude vs Longitude",
            "views": 2971,
            "web_url": "https://chart-studio.plotly.com/~bronsolo/63/latitude-vs-longitude/",
            "world_readable": true,
            "date_modified": "2015-07-05T13:25:39.460Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bronsolo/63/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bronsolo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1396614370.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "I am an engineer here @ Plotly based in Montreal!  I love data visualization and long walks on the beach.",
                "nickname": "Chuck Bronson",
                "website": "https://plot.ly/team",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-02-12 01:31:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bronsolo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2015-12-26T12:06:28.172443Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~margulies/17.embed",
            "fid": "margulies:17",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/margulies%2F17%2F9_RHV5S8IO2RE5TPZ25G8GZYY8D4URNU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/margulies%2F17%2F2_EBOAQLLYF7EO6YLFZSDXT909U4COCF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/margulies%2F17%2F8_8A23W51BXC89YUS5SG21JPO7CPLFOV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/margulies%2F17%2F9_RHV5S8IO2RE5TPZ25G8GZYY8D4URNU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/margulies:17",
                "plots": "https://api.plotly.com/v2/plots/margulies:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=margulies"
            },
            "owner": "margulies",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Connectivity embedding with NeuroSynth terms",
            "views": 241,
            "web_url": "https://chart-studio.plotly.com/~margulies/17/connectivity-embedding-with-neurosynth-terms/",
            "world_readable": true,
            "date_modified": "2015-12-26T12:06:29.690Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~margulies/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~margulies",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-04-26 23:27:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "margulies",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2014-01-08T04:38:59.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~carmeloosh/79.embed",
            "fid": "carmeloosh:79",
            "filename": "Random Walk",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/carmeloosh%2F79%2F9_TPAKTPC4HKMHH6IHD8429S55DZVHJ8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/carmeloosh%2F79%2F2_71LKS0KRZAA5NSK6VKFM8KFY8SOLT9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/carmeloosh%2F79%2F8_A19SDT5XLMZIHMJU4O2ZAIFS6RWWMR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/carmeloosh%2F79%2F9_TPAKTPC4HKMHH6IHD8429S55DZVHJ8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/carmeloosh:79",
                "plots": "https://api.plotly.com/v2/plots/carmeloosh:79",
                "parent": "https://api.plotly.com/v2/folders/home?user=carmeloosh"
            },
            "owner": "carmeloosh",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Random Walk",
            "views": 4889,
            "web_url": "https://chart-studio.plotly.com/~carmeloosh/79/random-walk/",
            "world_readable": true,
            "date_modified": "2015-06-29T07:54:37.977Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~carmeloosh/79/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~carmeloosh",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-07-04 05:17:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "carmeloosh",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2014-11-15T07:01:57.175083Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sambucas/40.embed",
            "fid": "sambucas:40",
            "filename": "geo-series-type",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sambucas%2F40%2F9_GP5JCVUW0JH3T5UH3EX2PRWNEK10JU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sambucas%2F40%2F2_6RXC80R2PNB1CUF7NB8JSAFFATIB6U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sambucas%2F40%2F8_YMDNIFQF5DE14NNWSGM400Y5ZCBTGL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sambucas%2F40%2F9_GP5JCVUW0JH3T5UH3EX2PRWNEK10JU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sambucas:40",
                "plots": "https://api.plotly.com/v2/plots/sambucas:40",
                "parent": "https://api.plotly.com/v2/folders/home?user=sambucas"
            },
            "owner": "sambucas",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Number of samples for each GEO series type",
            "views": 537,
            "web_url": "https://chart-studio.plotly.com/~sambucas/40/number-of-samples-for-each-geo-series-type/",
            "world_readable": true,
            "date_modified": "2015-07-10T01:30:16.018Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sambucas/40/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sambucas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "Sam",
                "website": "www.sambuckberry.me",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-02 05:37:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sambucas",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2016-01-17T21:47:48.082546Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~empet/13519.embed",
            "fid": "empet:13519",
            "filename": "Ply-airplane",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/empet%2F13519%2F9_ZMDSIRSCG2011UBXZQY2JMQPYHSLO8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/empet%2F13519%2F2_ZDJ71HGCL56EOO8ZAAR9CO2ZSJEZ9B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F13519%2F8_6ADIO0UN92ZDC5D9097G73F61VCTJL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F13519%2F9_ZMDSIRSCG2011UBXZQY2JMQPYHSLO8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/empet:13519",
                "plots": "https://api.plotly.com/v2/plots/empet:13519",
                "parent": "https://api.plotly.com/v2/folders/home?user=empet"
            },
            "owner": "empet",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Airplane",
            "views": 2351,
            "web_url": "https://chart-studio.plotly.com/~empet/13519/airplane/",
            "world_readable": true,
            "date_modified": "2016-01-17T21:47:48.848Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~empet/13519/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~empet",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/IOIQ1UHMQP9PAI49YRPHW8LI9L5IJA.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-11-20 18:36:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "empet",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}