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": "2014-09-11T17:00:13.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cimar/231.embed",
            "fid": "cimar:231",
            "filename": "<b>WHITE MALE PRIVILEGE<.b><br><i>How much more likely are white males to receive an email response ",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cimar%2F231%2F9_XJ6WR1DPL34HZYZ4KFNHB72Q5PQ5GQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cimar%2F231%2F2_M26T872QI6ECV7Y4TO7LZ1O9L00JFT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cimar%2F231%2F8_TMO3LW7P60W3L68W5JS58ZDMKRITBT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cimar%2F231%2F9_XJ6WR1DPL34HZYZ4KFNHB72Q5PQ5GQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cimar:231",
                "plots": "https://api.plotly.com/v2/plots/cimar:231",
                "parent": "https://api.plotly.com/v2/folders/home?user=cimar"
            },
            "owner": "cimar",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<b>WHITE MALE PRIVILEGE</b><br><i>How much more often professors respond to emails<br>from white males than to emails from...</i>",
            "views": 947,
            "web_url": "https://chart-studio.plotly.com/~cimar/231/white-male-privilege-how-much-more-often-professors-respond-to-emails-from-white/",
            "world_readable": true,
            "date_modified": "2015-06-21T14:05:20.011Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cimar/231/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "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
            },
            "figure": null,
            "autosize": null,
            "width": null,
            "height": null
        },
        {
            "creation_time": "2015-04-12T19:53:49.316049Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~isaacfab/241.embed",
            "fid": "isaacfab:241",
            "filename": "State Water Use by Category (2010)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/isaacfab%2F241%2F9_R3DUKF7YY71JAZ2GVM7E6IBXIBC909.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/isaacfab%2F241%2F2_WKGSBF04JJN23VDBLE0UIIM929ZOZK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/isaacfab%2F241%2F8_1CWRDZ0UIX9S5A7ZW93BMBCURGA5NY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/isaacfab%2F241%2F9_R3DUKF7YY71JAZ2GVM7E6IBXIBC909.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/isaacfab:241",
                "plots": "https://api.plotly.com/v2/plots/isaacfab:241",
                "parent": "https://api.plotly.com/v2/folders/home?user=isaacfab"
            },
            "owner": "isaacfab",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "State Water Use by Category (2010)",
            "views": 115330,
            "web_url": "https://chart-studio.plotly.com/~isaacfab/241/state-water-use-by-category-2010/",
            "world_readable": true,
            "date_modified": "2015-07-09T11:39:58.945Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~isaacfab/241/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~isaacfab",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.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": "2015-02-22 02:20:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "isaacfab",
                "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": 7710,
            "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": "2015-03-12T00:54:03.204793Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kameron.mccall/106.embed",
            "fid": "kameron.mccall:106",
            "filename": "Signal.Noise Ratio as a function of PMT voltage",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kameron.mccall%2F106%2F9_7PWL7GBCWC852EX3RIWMPMP5XDOWIU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kameron.mccall%2F106%2F2_F161NKJSTO91BLAPMNQVPUJUFO556G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kameron.mccall%2F106%2F8_84KES7Z8D35H307MGYFJS3B2SEMXTW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kameron.mccall%2F106%2F9_7PWL7GBCWC852EX3RIWMPMP5XDOWIU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kameron.mccall:106",
                "plots": "https://api.plotly.com/v2/plots/kameron.mccall:106",
                "parent": "https://api.plotly.com/v2/folders/home?user=kameron.mccall"
            },
            "owner": "kameron.mccall",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Signal/Noise Ratio as a function of PMT bias voltage",
            "views": 1233,
            "web_url": "https://chart-studio.plotly.com/~kameron.mccall/106/signalnoise-ratio-as-a-function-of-pmt-bias-voltage/",
            "world_readable": true,
            "date_modified": "2015-07-09T15:07:14.075Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kameron.mccall/106/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kameron.mccall",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1425608830.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "Physics student at the University of Houston.Current Major Project: Scintillator detector quality monitoring and measurements.",
                "nickname": "Salz",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-03-05 02:56:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kameron.mccall",
                "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-04-01T14:45:49.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~abtran/7.embed",
            "fid": "abtran:7",
            "filename": "Grubhub Seamless College",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/abtran/7/9_N1MDZBBV3W56KRLU69GCMEHRPU3KH3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/abtran%2F7%2F2_2C5XKP0UI9FKEPI9E1I4T2057IE5FW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/abtran%2F7%2F8_3SFF8HZQNKSN88PDY8I487PM4FRGRU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/abtran/7/9_N1MDZBBV3W56KRLU69GCMEHRPU3KH3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/abtran:7",
                "plots": "https://api.plotly.com/v2/plots/abtran:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=abtran"
            },
            "owner": "abtran",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Foods popular with college students in Boston",
            "views": 3059,
            "web_url": "https://chart-studio.plotly.com/~abtran/7/foods-popular-with-college-students-in-boston/",
            "world_readable": true,
            "date_modified": "2015-07-09T16:33:35.623Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~abtran/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~abtran",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406665427.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "Data Editor at TrendCT/The Connecticut Mirror",
                "nickname": "Andrew Tran",
                "website": "http://www.trendct.org",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-03-28 14:47:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "abtran",
                "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-14T15:43:36.537885Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chelsea_lyn/5245.embed",
            "fid": "chelsea_lyn:5245",
            "filename": "Pie Chart Subplot Example",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F5245%2F9_3TGQ5RWPYY2YPZX1H799KCK3CGU2I6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F5245%2F2_B1CUVNPQJKL0YCOEY34O8FV7GH0RCQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F5245%2F8_PO20R3YJTJTE9BAG1I3GHCSEO72CHA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F5245%2F9_3TGQ5RWPYY2YPZX1H799KCK3CGU2I6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chelsea_lyn:5245",
                "plots": "https://api.plotly.com/v2/plots/chelsea_lyn:5245",
                "parent": "https://api.plotly.com/v2/folders/home?user=chelsea_lyn"
            },
            "owner": "chelsea_lyn",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Van Gogh: 5 Most Prominent Colors Shown Proportionally",
            "views": 15650,
            "web_url": "https://chart-studio.plotly.com/~chelsea_lyn/5245/van-gogh-5-most-prominent-colors-shown-proportionally/",
            "world_readable": true,
            "date_modified": "2015-12-19T02:34:29.860Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chelsea_lyn/5245/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chelsea_lyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/S3XINYAKT6PTQGIEIXCFVI8KED3Y4T.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "Chelsea",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-03-11 14:59:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chelsea_lyn",
                "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-03-07T17:26:35.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~greentechmedia/53.embed",
            "fid": "greentechmedia:53",
            "filename": "monthly_gas",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/greentechmedia%2F53%2F9_SQ26S9OY78NXG3RILUX9VC2VGTUI00.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/greentechmedia%2F53%2F2_N7VO76GW7E9F2DS773LH8AAR1S9UES.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/greentechmedia%2F53%2F8_GQAVNKD5L3SI9L7MU93VVMS8N033GF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/greentechmedia%2F53%2F9_SQ26S9OY78NXG3RILUX9VC2VGTUI00.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/greentechmedia:53",
                "plots": "https://api.plotly.com/v2/plots/greentechmedia:53",
                "parent": "https://api.plotly.com/v2/folders/home?user=greentechmedia"
            },
            "owner": "greentechmedia",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Monthly gas bills for gas-heated multifamily building",
            "views": 2707,
            "web_url": "https://chart-studio.plotly.com/~greentechmedia/53/monthly-gas-bills-for-gas-heated-multifamily-building/",
            "world_readable": true,
            "date_modified": "2015-07-09T02:27:57.303Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~greentechmedia/53/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~greentechmedia",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "The world's leading cleantech news source",
                "nickname": "Greentech Media",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-01-28 22:12:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "greentechmedia",
                "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:56:17.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~demos/1612.embed",
            "fid": "demos:1612",
            "filename": "triple-axes",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/demos%2F1612%2F9_UKJ55ZOTR06UHN0087R1H57IRL3PXB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/demos%2F1612%2F2_MOTX2HWFB8BG0X1C0ONL4TU924U117.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/demos%2F1612%2F8_PZAF5DPMDKNDBAIUV1QE4TZC845DN4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/demos%2F1612%2F9_UKJ55ZOTR06UHN0087R1H57IRL3PXB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/demos:1612",
                "plots": "https://api.plotly.com/v2/plots/demos:1612",
                "parent": "https://api.plotly.com/v2/folders/home?user=demos"
            },
            "owner": "demos",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Cases vs Years",
            "views": 2816,
            "web_url": "https://chart-studio.plotly.com/~demos/1612/cases-vs-years/",
            "world_readable": true,
            "date_modified": "2015-06-20T17:03:25.899Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~demos/1612/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~demos",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/92.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": "2013-01-08 23:29:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "demos",
                "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-12-07T21:50:07.657135Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rognab/45.embed",
            "fid": "rognab:45",
            "filename": "plot from API (36)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rognab%2F45%2F9_RAWJ0PO4OSBW8RUDFSBZ3D5IGMYHLF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rognab%2F45%2F2_V2OZ27GZO4O8ZMTQDI1DDTQBACSTP7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rognab%2F45%2F8_GFUCW36YRR8AYDTT3U99MZDM8WCYBG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rognab%2F45%2F9_RAWJ0PO4OSBW8RUDFSBZ3D5IGMYHLF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rognab:45",
                "plots": "https://api.plotly.com/v2/plots/rognab:45",
                "parent": "https://api.plotly.com/v2/folders/home?user=rognab"
            },
            "owner": "rognab",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Triangulated Space Filling Curve.1",
            "views": 2705,
            "web_url": "https://chart-studio.plotly.com/~rognab/45/triangulated-space-filling-curve1/",
            "world_readable": true,
            "date_modified": "2015-07-09T21:06:01.853Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rognab/45/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rognab",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1418069105.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-10-27 14:57:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rognab",
                "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:11:42.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~BethS/2.embed",
            "fid": "BethS:2",
            "filename": "Human beings, as we know them...",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/BethS%2F2%2F9_2TYIU7M8LMCO06C7EYQ8MPOIZ7ENDE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BethS%2F2%2F2_X6JBJMPC3LWLR78B9V0Z71VDWOAXEV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BethS%2F2%2F8_9OLRJF18KSLN0GS38ZH8JWND3KHHMM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/BethS%2F2%2F9_2TYIU7M8LMCO06C7EYQ8MPOIZ7ENDE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BethS:2",
                "plots": "https://api.plotly.com/v2/plots/BethS:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=BethS"
            },
            "owner": "BethS",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Yes or No? <br> \"Human beings, as we know them, developed from earlier species of animals.\"",
            "views": 1295,
            "web_url": "https://chart-studio.plotly.com/~BethS/2/yes-or-no-human-beings-as-we-know-them-developed-from-earlier-species-of-animals/",
            "world_readable": true,
            "date_modified": "2015-06-24T21:38:37.150Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~BethS/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~BethS",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.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": "2014-05-20 22:54:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "BethS",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}