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&order_by=-views
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": "2014-05-23T18:24:13.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amelia/17.embed",
            "fid": "amelia:17",
            "filename": "listening trends",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/amelia%2F17%2F9_6XQI4MX6K5EB42TQLDDTJF7YSDDGQK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/amelia%2F17%2F2_YGFI0TK1BO2P49P41OJOEK11CIF46K.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/amelia%2F17%2F8_4JFBR5XPOH1RGYET6BGKSRWGPAQ6FU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/amelia%2F17%2F9_6XQI4MX6K5EB42TQLDDTJF7YSDDGQK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amelia:17",
                "plots": "https://api.plotly.com/v2/plots/amelia:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=amelia"
            },
            "owner": "amelia",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Amelia's Listening Trends",
            "views": 970,
            "web_url": "https://chart-studio.plotly.com/~amelia/17/amelias-listening-trends/",
            "world_readable": true,
            "date_modified": "2015-07-07T22:31:16.546Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amelia/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amelia",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.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-11-26 21:15:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amelia",
                "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": "2015-02-28T01:42:41.475913Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~matlab_user_guide/2146.embed",
            "fid": "matlab_user_guide:2146",
            "filename": "untitled (1000) (78)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/matlab_user_guide%2F2146%2F9_IBT644542LUY00R95HP4TYTNHLZX9J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/matlab_user_guide%2F2146%2F2_69YQKA89OQN6NEN249KHEBMYE38H5W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/matlab_user_guide%2F2146%2F8_6NB3YHC9VC3MDRSIGRD7BI5TUW0SXB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/matlab_user_guide%2F2146%2F9_IBT644542LUY00R95HP4TYTNHLZX9J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/matlab_user_guide:2146",
                "plots": "https://api.plotly.com/v2/plots/matlab_user_guide:2146",
                "parent": "https://api.plotly.com/v2/folders/home?user=matlab_user_guide"
            },
            "owner": "matlab_user_guide",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "",
            "views": 463,
            "web_url": "https://chart-studio.plotly.com/~matlab_user_guide/2146/",
            "world_readable": true,
            "date_modified": "2015-07-07T10:26:32.465Z",
            "collaborators": {
                "results": [
                    {
                        "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
                    }
                ],
                "count": 1
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~matlab_user_guide/2146/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~matlab_user_guide",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1409167645.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": "2014-06-09 15:19:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "matlab_user_guide",
                "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-01-21T20:27:33.279115Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jackp/2590.embed",
            "fid": "jackp:2590",
            "filename": "waaaaves",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp%2F2590%2F9_ROTQ4NBKQVLM52RLTBT585D659I2KT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F2590%2F2_TEY8YT8Q9J99OOK3CF1C54LGW2AOUO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F2590%2F8_3TUI0OPUO0JXJ4ET7H1WBQF9S8AGMA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F2590%2F9_ROTQ4NBKQVLM52RLTBT585D659I2KT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:2590",
                "plots": "https://api.plotly.com/v2/plots/jackp:2590",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "waaaaves",
            "views": 22530,
            "web_url": "https://chart-studio.plotly.com/~jackp/2590/waaaaves/",
            "world_readable": true,
            "date_modified": "2017-12-12T20:55:28.450Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jackp/2590/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jackp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/NRIGSXBYZT3V46K5Y56OXF8F4QRONJ.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "😎 🌴 🍹",
                "nickname": "c e o @ plotly",
                "website": "https://github.com/jackparmer",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-09-28 19:38:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jackp",
                "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-09T18:42:11.557047Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~empet/48.embed",
            "fid": "empet:48",
            "filename": "Tennis-Gini-index",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/empet%2F48%2F9_8ONS5QN90EY70O30JO41AG0LZ5PNJ7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/empet%2F48%2F2_WIT17S9QEVA3XMF2WUF6M3MMQN4JVJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F48%2F8_IPXHE29W64O1QDSUXJIWNXRF6K6FB3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F48%2F9_8ONS5QN90EY70O30JO41AG0LZ5PNJ7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/empet:48",
                "plots": "https://api.plotly.com/v2/plots/empet:48",
                "parent": "https://api.plotly.com/v2/folders/home?user=empet"
            },
            "owner": "empet",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "The scatter plots of ranking points for tennis players (left),<br>and the corresponding Lorenz curve and Gini index (right)",
            "views": 1082,
            "web_url": "https://chart-studio.plotly.com/~empet/48/the-scatter-plots-of-ranking-points-for-tennis-players-left-and-the-correspondin/",
            "world_readable": true,
            "date_modified": "2016-10-19T07:03:39.453Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~empet/48/",
            "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
            }
        },
        {
            "creation_time": "2015-06-10T20:02:48.311324Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~stacyannj/230.embed",
            "fid": "stacyannj:230",
            "filename": "IBM Workforce, 2005-2014",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/stacyannj/230/9_QGZ4IHAB05HS1H2CBDLC0JO4QPZOMV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/stacyannj%2F230%2F2_OAB6BTJQIYAB74UG9FX75J8LJXVX1C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/stacyannj%2F230%2F8_UDH97D75I6INYMZT008XJFPSU6NCGL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/stacyannj/230/9_QGZ4IHAB05HS1H2CBDLC0JO4QPZOMV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/stacyannj:230",
                "plots": "https://api.plotly.com/v2/plots/stacyannj:230",
                "parent": "https://api.plotly.com/v2/folders/home?user=stacyannj"
            },
            "owner": "stacyannj",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "IBM Workforce, 2005-2014",
            "views": 57534,
            "web_url": "https://chart-studio.plotly.com/~stacyannj/230/ibm-workforce-2005-2014/",
            "world_readable": true,
            "date_modified": "2015-07-10T14:58:23.207Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~stacyannj/230/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~stacyannj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "Fortune Data Team",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-05-22 14:55:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "stacyannj",
                "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-20T23:22:43.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~C_Sevigny/2.embed",
            "fid": "C_Sevigny:2",
            "filename": "Percent of Global GDP: 1820 - 2012",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/C_Sevigny/2/9_RRFTDKVP4PNC5JO3I9UI455BXLSQHX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/C_Sevigny%2F2%2F2_DA86ULVLT9FLWEM3SBP66ICEIYHFGM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/C_Sevigny%2F2%2F8_LCOI7YY6DQE10SITR7XANMHP9QFWMB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/C_Sevigny/2/9_RRFTDKVP4PNC5JO3I9UI455BXLSQHX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/C_Sevigny:2",
                "plots": "https://api.plotly.com/v2/plots/C_Sevigny:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=C_Sevigny"
            },
            "owner": "C_Sevigny",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br><br>Percent of Global GDP: 1820 - 2012",
            "views": 7719,
            "web_url": "https://chart-studio.plotly.com/~C_Sevigny/2/percent-of-global-gdp-1820-2012/",
            "world_readable": true,
            "date_modified": "2015-07-07T23:27:00.581Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~C_Sevigny/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~C_Sevigny",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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": "2014-05-20 23:06:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "C_Sevigny",
                "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": 4890,
            "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-05-24T07:12:26.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~test-runner/29.embed",
            "fid": "test-runner:29",
            "filename": "RdBu",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/test-runner/29/9_RYAJZXYKZAK5MQNO99SLLIHRS69JR9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/test-runner%2F29%2F2_H6I6BQ9Y277TILPZLEXWDW46UX89G5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/test-runner%2F29%2F8_BPIQ5BR75AAF3Q8IX6ENWFG36XOLK3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/test-runner/29/9_RYAJZXYKZAK5MQNO99SLLIHRS69JR9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/test-runner:29",
                "plots": "https://api.plotly.com/v2/plots/test-runner:29",
                "parent": "https://api.plotly.com/v2/folders/home?user=test-runner"
            },
            "owner": "test-runner",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "\"RdBu\" color scale",
            "views": 2325,
            "web_url": "https://chart-studio.plotly.com/~test-runner/29/rdbu-color-scale/",
            "world_readable": true,
            "date_modified": "2015-06-20T22:22:01.371Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~test-runner/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~test-runner",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-29 06:01:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "test-runner",
                "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-09-06T19:01:38.127744Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~empet/36.embed",
            "fid": "empet:36",
            "filename": "EU-Parliam-Political-Groups",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/empet%2F36%2F9_GI2LS9EJTVRFT8DI01W1GDJU7N6Q2G.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/empet%2F36%2F2_G08YZNV2IBCDGOKIKTDLYG6UAG0VJA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F36%2F8_2U9ZTJQNSKT1HQZEHZVS0D82WFJJXV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F36%2F9_GI2LS9EJTVRFT8DI01W1GDJU7N6Q2G.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/empet:36",
                "plots": "https://api.plotly.com/v2/plots/empet:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=empet"
            },
            "owner": "empet",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Number of Seats won by the Political Groups in the European Parliament",
            "views": 2689,
            "web_url": "https://chart-studio.plotly.com/~empet/36/number-of-seats-won-by-the-political-groups-in-the-european-parliament/",
            "world_readable": true,
            "date_modified": "2015-09-07T07:55:09.154Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~empet/36/",
            "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
            }
        },
        {
            "creation_time": "2014-05-20T01:23:24.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~RgraphingAPI/503.embed",
            "fid": "RgraphingAPI:503",
            "filename": "from api (112) (4)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/RgraphingAPI:503/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/RgraphingAPI%2F503%2F2_IDWKMXGXPX0CFHXOVM7DYSC5C73DV4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/RgraphingAPI%2F503%2F8_0GM7KL2DZAYKLKJMP5M33USNT0V1KQ.png",
                "list-thumb": "https://api.plotly.com/v2/files/RgraphingAPI:503/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/RgraphingAPI:503",
                "plots": "https://api.plotly.com/v2/plots/RgraphingAPI:503",
                "parent": "https://api.plotly.com/v2/folders/home?user=RgraphingAPI"
            },
            "owner": "RgraphingAPI",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "price vs carat",
            "views": 10566,
            "web_url": "https://chart-studio.plotly.com/~RgraphingAPI/503/price-vs-carat/",
            "world_readable": true,
            "date_modified": "2015-07-07T06:09:44.712Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~RgraphingAPI/503/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~RgraphingAPI",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-10 04:37:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "RgraphingAPI",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}