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-10-21T20:13:42.650081Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jackp/14313.embed",
            "fid": "jackp:14313",
            "filename": "networkx",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp/14313/9_65PPCXEUJFM2182RH16U6FKJICKLHG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F14313%2F2_KI4VZC49N40BHTQX486SHFMRXT8QVT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F14313%2F8_WB20WDQALSSTX41JY37T1OUF0F9LJ0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp/14313/9_65PPCXEUJFM2182RH16U6FKJICKLHG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:14313",
                "plots": "https://api.plotly.com/v2/plots/jackp:14313",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>Network graph made with Python",
            "views": 1486,
            "web_url": "https://chart-studio.plotly.com/~jackp/14313/network-graph-made-with-python/",
            "world_readable": true,
            "date_modified": "2015-10-21T20:13:43.294Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jackp/14313/",
            "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
            },
            "figure": null,
            "autosize": null,
            "width": null,
            "height": null
        },
        {
            "creation_time": "2015-11-11T17:46:54.458854Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chris/15264.embed",
            "fid": "chris:15264",
            "filename": "most deadly earthquakes - equirectangular (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chris%2F15264%2F9_FU6LO8BR500WKS1HK2I430E6DRDPJX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chris%2F15264%2F2_EXL8NSGQDIBX45G8SUC6KFAUNQQ2S5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chris%2F15264%2F8_0YV1J24UBO544WOUNIWIFTHSDASFNI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chris%2F15264%2F9_FU6LO8BR500WKS1HK2I430E6DRDPJX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chris:15264",
                "plots": "https://api.plotly.com/v2/plots/chris:15264",
                "parent": "https://api.plotly.com/v2/folders/home?user=chris"
            },
            "owner": "chris",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "5849 Most Intense Earthquakes Since 2150 BC",
            "views": 932,
            "web_url": "https://chart-studio.plotly.com/~chris/15264/_5849-most-intense-earthquakes-since-2150-bc/",
            "world_readable": true,
            "date_modified": "2015-11-11T17:46:54.527Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chris/15264/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chris",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1426360105.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "i was raised by robots",
                "nickname": "chriddyplz",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-03-25 19:31:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chris",
                "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-04-17T15:59:48.506199Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~langelgjm/2.embed",
            "fid": "langelgjm:2",
            "filename": "energy-usage",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/langelgjm%2F2%2F9_9H6XPKRKPD5A3CHFUGIIJTXA4GFY4Q.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/langelgjm%2F2%2F2_V09WM1IJA071W74AGQNKVIRQ5TDURD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/langelgjm%2F2%2F8_LR8NJ87KRRVP24SKV6NYOA20BL2K4X.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/langelgjm%2F2%2F9_9H6XPKRKPD5A3CHFUGIIJTXA4GFY4Q.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/langelgjm:2",
                "plots": "https://api.plotly.com/v2/plots/langelgjm:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=langelgjm"
            },
            "owner": "langelgjm",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Electricity Usage",
            "views": 1409,
            "web_url": "https://chart-studio.plotly.com/~langelgjm/2/electricity-usage/",
            "world_readable": true,
            "date_modified": "2016-04-17T15:59:48.898Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~langelgjm/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~langelgjm",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-10-28 15:41:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "langelgjm",
                "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-11T08:48:22.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PewResearch/3.embed",
            "fid": "PewResearch:3",
            "filename": "Economic Conditions (http:..www.pewresearch.org.data-trend.national-conditions.economic-conditions.)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PewResearch%2F3%2F9_PK2E6TFCPGK3A58ACEDGAZ7E2EQIO5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PewResearch%2F3%2F2_QVUUBXDOKXWYU60WTWNWS251ABREXP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PewResearch%2F3%2F8_HYFEO7DX0W6LS97CZEUTB8TVJ7FM3U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PewResearch%2F3%2F9_PK2E6TFCPGK3A58ACEDGAZ7E2EQIO5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PewResearch:3",
                "plots": "https://api.plotly.com/v2/plots/PewResearch:3",
                "parent": "https://api.plotly.com/v2/folders/PewResearch:2"
            },
            "owner": "PewResearch",
            "parent": 2,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br><i>How would you rate economic conditions in this country (U.S.) today?</i>",
            "views": 536,
            "web_url": "https://chart-studio.plotly.com/~PewResearch/3/how-would-you-rate-economic-conditions-in-this-country-us-today/",
            "world_readable": true,
            "date_modified": "2015-06-21T19:05:27.753Z",
            "collaborators": {
                "results": [
                    {
                        "profile_url": "https://chart-studio.plotly.com/~christopherp",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1437505399.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": "2015-07-20 21:45:05",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "christopherp",
                        "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/~PewResearch/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PewResearch",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406611630.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "Interactive Plotly versions of graphs originally created by The Pew Research Center:",
                "nickname": "",
                "website": "http://www.pewresearch.org/",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-02-22 03:20:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PewResearch",
                "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-06-16T21:58:59.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Vox/6.embed",
            "fid": "Vox:6",
            "filename": "Household income during childhood vs. income during adulthood",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Vox%2F6%2F9_C7JVMEJAOS12NRZ72QVBEUROUGS2SC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Vox%2F6%2F2_7H9PI4E64DKDPQ37J2B0UI47O2K3VW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Vox%2F6%2F8_J5HIY37UMB8E4FSIFSKZ4YR4TKSAX4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Vox%2F6%2F9_C7JVMEJAOS12NRZ72QVBEUROUGS2SC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Vox:6",
                "plots": "https://api.plotly.com/v2/plots/Vox:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=Vox"
            },
            "owner": "Vox",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "The Big Picture<br><br>Household income during childhood vs. income during adulthood",
            "views": 5400,
            "web_url": "https://chart-studio.plotly.com/~Vox/6/the-big-picture-household-income-during-childhood-vs-income-during-adulthood/",
            "world_readable": true,
            "date_modified": "2015-07-09T20:27:03.810Z",
            "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/~Vox/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Vox",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406611524.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "Interactive Plotly versions of graphs originally created by Vox:",
                "nickname": "",
                "website": "http://www.vox.com/",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-03-24 00:54:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Vox",
                "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-30T14:31:30.901466Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~torachitech/32.embed",
            "fid": "torachitech:32",
            "filename": "Tora's Pizza Oven (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/torachitech%2F32%2F9_ANHEAAU2K25T02QU4POHJP4G8UH9T4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/torachitech%2F32%2F2_Q7ASPUH7RVJNAAEA8I1MWLWJQHWY5U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/torachitech%2F32%2F8_INEJGCO9ED9Q4TOQW6A27HI8VDASC8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/torachitech%2F32%2F9_ANHEAAU2K25T02QU4POHJP4G8UH9T4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/torachitech:32",
                "plots": "https://api.plotly.com/v2/plots/torachitech:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=torachitech"
            },
            "owner": "torachitech",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Tora's Pizza Oven",
            "views": 398,
            "web_url": "https://chart-studio.plotly.com/~torachitech/32/toras-pizza-oven/",
            "world_readable": true,
            "date_modified": "2015-07-04T00:50:36.348Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~torachitech/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~torachitech",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1435682327.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-06-18 18:03:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "torachitech",
                "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-10T09:29:41.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~FiveThirtyEight/21.embed",
            "fid": "FiveThirtyEight:21",
            "filename": "The Search for America's Best Burrito: West",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight%2F21%2F9_OPMWOTDB1ULNG45R1YKTGNDGEXH8U4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight%2F21%2F2_KRZMBV1OD3JBO66EMM5I6K0MVMLDWG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight%2F21%2F8_N3Y20ETDM9XE44J9DV87KLY3G6SP2M.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight%2F21%2F9_OPMWOTDB1ULNG45R1YKTGNDGEXH8U4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/FiveThirtyEight:21",
                "plots": "https://api.plotly.com/v2/plots/FiveThirtyEight:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=FiveThirtyEight"
            },
            "owner": "FiveThirtyEight",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>The Search for America's Best Burrito: The West",
            "views": 2497,
            "web_url": "https://chart-studio.plotly.com/~FiveThirtyEight/21/the-search-for-americas-best-burrito-the-west/",
            "world_readable": true,
            "date_modified": "2015-06-23T09:59:34.285Z",
            "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
                    },
                    {
                        "profile_url": "https://chart-studio.plotly.com/~cimar",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1405546733.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                        "bio": "writer at www.priceonomics.com",
                        "nickname": "",
                        "website": "http://www.rosiecima.com",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2014-05-02 13:32:12",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "cimar",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    }
                ],
                "count": 2
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~FiveThirtyEight/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~FiveThirtyEight",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "Interactive Plotly versions of graphs originally created by FiveThirtyEight",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-05-30 08:12:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "FiveThirtyEight",
                "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-26T15:40:29.007146Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~etpinard/3605.embed",
            "fid": "etpinard:3605",
            "filename": "DOS_bands_Si (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F3605%2F9_2NAESQVXOY4I7S0CAD135GZLARQWXY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F3605%2F2_J53CMDG41ZKPM6O608OHKP04J6CB2R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F3605%2F8_1DVUD53UHG5E6YXZOSZQUSMTRXE8X4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/etpinard%2F3605%2F9_2NAESQVXOY4I7S0CAD135GZLARQWXY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/etpinard:3605",
                "plots": "https://api.plotly.com/v2/plots/etpinard:3605",
                "parent": "https://api.plotly.com/v2/folders/home?user=etpinard"
            },
            "owner": "etpinard",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Bands diagram of Silicon",
            "views": 571,
            "web_url": "https://chart-studio.plotly.com/~etpinard/3605/bands-diagram-of-silicon/",
            "world_readable": true,
            "date_modified": "2015-06-21T13:33:12.323Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~etpinard/3605/",
            "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
            }
        },
        {
            "creation_time": "2015-10-29T00:20:19.290176Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dtrejod/503.embed",
            "fid": "dtrejod:503",
            "filename": "Sales_Map2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dtrejod%2F503%2F9_EOKQS69AIIX4OYY4YRY2VX9KUPTNAG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dtrejod%2F503%2F2_KTSOUZMBLT0KLQBPTD0B09XUZ596QX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dtrejod%2F503%2F8_W20AQJLO1TQRSIZW1CRACFHK71W5FF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dtrejod%2F503%2F9_EOKQS69AIIX4OYY4YRY2VX9KUPTNAG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dtrejod:503",
                "plots": "https://api.plotly.com/v2/plots/dtrejod:503",
                "parent": "https://api.plotly.com/v2/folders/dtrejod:70"
            },
            "owner": "dtrejod",
            "parent": 70,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "",
            "views": 32818,
            "web_url": "https://chart-studio.plotly.com/~dtrejod/503/",
            "world_readable": true,
            "date_modified": "2015-10-29T00:20:19.325Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dtrejod/503/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dtrejod",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.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-10-16 00:34:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dtrejod",
                "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-04-15T11:26:50.804375Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dreamshot/411.embed",
            "fid": "Dreamshot:411",
            "filename": "Speed vs. Time",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F411%2F9_VV7C8A41OEIFGDL1H0MBD1I03FU5U1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F411%2F2_M8OBH4VSDQ8E3EEX3ZYDT1PVC24MJU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F411%2F8_809F50RA2CHOIXZ1ZXLCL3HG19AK5R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F411%2F9_VV7C8A41OEIFGDL1H0MBD1I03FU5U1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dreamshot:411",
                "plots": "https://api.plotly.com/v2/plots/Dreamshot:411",
                "parent": "https://api.plotly.com/v2/folders/Dreamshot:417"
            },
            "owner": "Dreamshot",
            "parent": 417,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>Speed vs. Time",
            "views": 15633,
            "web_url": "https://chart-studio.plotly.com/~Dreamshot/411/speed-vs-time/",
            "world_readable": true,
            "date_modified": "2016-04-15T11:26:50.869Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dreamshot/411/",
            "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
            }
        }
    ]
}