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-08-13T05:23:06.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~empet/22.embed",
            "fid": "empet:22",
            "filename": "FieldsMedalists",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/empet%2F22%2F9_R7MVW0Z9YDZYQXP6YW4032SUAQM1S8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/empet%2F22%2F2_2J6NKG1IYECDDIWXMZYU5WPMZOMRVV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F22%2F8_FJPVKYB5IDJQ5X9H27RQTPS7BLZ5CO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/empet%2F22%2F9_R7MVW0Z9YDZYQXP6YW4032SUAQM1S8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/empet:22",
                "plots": "https://api.plotly.com/v2/plots/empet:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=empet"
            },
            "owner": "empet",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "The age of Fields Medalists at the time of medal award",
            "views": 3879,
            "web_url": "https://chart-studio.plotly.com/~empet/22/the-age-of-fields-medalists-at-the-time-of-medal-award/",
            "world_readable": true,
            "date_modified": "2015-07-08T00:48:52.653Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~empet/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "\n",
            "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
            },
            "figure": null,
            "autosize": null,
            "width": null,
            "height": null
        },
        {
            "creation_time": "2016-02-04T21:41:38.737222Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ElPolloFrio/1911.embed",
            "fid": "ElPolloFrio:1911",
            "filename": "RH_ColorByTor",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F1911%2F9_3ANU1T0DHWRUGQF79KTBBQ200TPBUK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F1911%2F2_QF4MHARDAQBI5W8EET8U6BQMG0ZPMK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F1911%2F8_FTMD5CVPPT1YMDOP05K0NBA91HSBXW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F1911%2F9_3ANU1T0DHWRUGQF79KTBBQ200TPBUK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ElPolloFrio:1911",
                "plots": "https://api.plotly.com/v2/plots/ElPolloFrio:1911",
                "parent": "https://api.plotly.com/v2/folders/home?user=ElPolloFrio"
            },
            "owner": "ElPolloFrio",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "TDSs observed in the LSX CWA, 2/2012 - 7/2015<br>Preliminary results subject to change",
            "views": 181,
            "web_url": "https://chart-studio.plotly.com/~ElPolloFrio/1911/tdss-observed-in-the-lsx-cwa-22012-72015-preliminary-results-subject-to-change/",
            "world_readable": true,
            "date_modified": "2016-02-04T21:41:39.124Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ElPolloFrio/1911/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ElPolloFrio",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1446866825.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "Operational meteorologist.",
                "nickname": "",
                "website": "http://www.twitter.com/@ElPolloFrio",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-02-06 00:37:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ElPolloFrio",
                "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-29T20:37:04.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cimar/104.embed",
            "fid": "cimar:104",
            "filename": "rank and hirschl affluence clean",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cimar%2F104%2F9_X7XL0NVQCNCXGBXV39F29UZZB0Y1BU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cimar%2F104%2F2_T3TFZ5LXPJVRYKO6BSGB0VWGEMPHEI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cimar%2F104%2F8_AZSXRSU92SHGNRJ8C6NWNOQ005RXZ0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cimar%2F104%2F9_X7XL0NVQCNCXGBXV39F29UZZB0Y1BU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cimar:104",
                "plots": "https://api.plotly.com/v2/plots/cimar:104",
                "parent": "https://api.plotly.com/v2/folders/cimar:134"
            },
            "owner": "cimar",
            "parent": 134,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<b>The Real 1%</b><br><i>Percentage of Americans who spend more than one year<br>of their careers in the top percentiles of income (household) </i>",
            "views": 5173,
            "web_url": "https://chart-studio.plotly.com/~cimar/104/the-real-1-percentage-of-americans-who-spend-more-than-one-year-of-their-careers/",
            "world_readable": true,
            "date_modified": "2015-07-10T13:06:31.655Z",
            "collaborators": {
                "results": [
                    {
                        "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
                    }
                ],
                "count": 1
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cimar/104/",
            "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
            }
        },
        {
            "creation_time": "2015-04-07T20:07:23.610973Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~BenPostlethwaite/674.embed",
            "fid": "BenPostlethwaite:674",
            "filename": "Correlation Matrix (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/BenPostlethwaite%2F674%2F9_BGSQD92NUBRHI9S4OC810YV6LP9364.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BenPostlethwaite%2F674%2F2_2E6WS6XT51KUJG97BFHCYMQITVEPS4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BenPostlethwaite%2F674%2F8_1T4G9FMKNVNDDS5DSCO8C82FG0K9CP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/BenPostlethwaite%2F674%2F9_BGSQD92NUBRHI9S4OC810YV6LP9364.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BenPostlethwaite:674",
                "plots": "https://api.plotly.com/v2/plots/BenPostlethwaite:674",
                "parent": "https://api.plotly.com/v2/folders/BenPostlethwaite:751"
            },
            "owner": "BenPostlethwaite",
            "parent": 751,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Correlation Matrix",
            "views": 748,
            "web_url": "https://chart-studio.plotly.com/~BenPostlethwaite/674/correlation-matrix/",
            "world_readable": true,
            "date_modified": "2015-07-08T19:44:48.158Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~BenPostlethwaite/674/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~BenPostlethwaite",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/BQNOG50TUUMNIWK7CYFBAEY1VBSPDO.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "Ride the tiger",
                "nickname": "Ben",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-12-31 22:21:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "BenPostlethwaite",
                "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-22T16:26:54.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cfif/40.embed",
            "fid": "cfif:40",
            "filename": "ASYNCHO from 0.00 to 0.05",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cfif%2F40%2F9_45Z37P4M3OGY663ODA2ZYYASP72XFF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cfif%2F40%2F2_LFB779Q303YWUN5EVJHNPRGQWIV3YX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cfif%2F40%2F8_LV3OV22R188K0I7GT4PCFV144TMNNR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cfif%2F40%2F9_45Z37P4M3OGY663ODA2ZYYASP72XFF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cfif:40",
                "plots": "https://api.plotly.com/v2/plots/cfif:40",
                "parent": "https://api.plotly.com/v2/folders/home?user=cfif"
            },
            "owner": "cfif",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "from 0.00 to 0.05 h of reaction",
            "views": 559,
            "web_url": "https://chart-studio.plotly.com/~cfif/40/from-000-to-005-h-of-reaction/",
            "world_readable": true,
            "date_modified": "2015-06-30T18:59:59.904Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cfif/40/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cfif",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "CF",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-08 11:37:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cfif",
                "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-06T05:20:08.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cimar/114.embed",
            "fid": "cimar:114",
            "filename": "Cannabis use by age",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cimar%2F114%2F9_KTLH64KEDEN520O5JWISIL2JO47JW2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cimar%2F114%2F2_FVCBPV0VIQKM9CE7IMWIQ499SRN2HH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cimar%2F114%2F8_OM4WK3F5N85Z5YBJ7XB5EM9YPG24EZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cimar%2F114%2F9_KTLH64KEDEN520O5JWISIL2JO47JW2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cimar:114",
                "plots": "https://api.plotly.com/v2/plots/cimar:114",
                "parent": "https://api.plotly.com/v2/folders/cimar:134"
            },
            "owner": "cimar",
            "parent": 134,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Cannabis use by Country and Age",
            "views": 4683,
            "web_url": "https://chart-studio.plotly.com/~cimar/114/cannabis-use-by-country-and-age/",
            "world_readable": true,
            "date_modified": "2015-07-08T00:48:55.185Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cimar/114/",
            "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
            }
        },
        {
            "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": 2708,
            "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": "2016-01-06T01:10:46.716247Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mgric/98.embed",
            "fid": "mgric:98",
            "filename": "Top Donators IND",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mgric%2F98%2F9_K2DJ1S9I9VW9H3C9CXPI85JQ484H2O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mgric%2F98%2F2_JDHT5XPK6C9UG3FVW8LITRUH0XM499.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mgric%2F98%2F8_D2UTRMNRJ54S0A6U6Z6DVUHD0VGKPN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mgric%2F98%2F9_K2DJ1S9I9VW9H3C9CXPI85JQ484H2O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mgric:98",
                "plots": "https://api.plotly.com/v2/plots/mgric:98",
                "parent": "https://api.plotly.com/v2/folders/home?user=mgric"
            },
            "owner": "mgric",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Top Industries 2014",
            "views": 667,
            "web_url": "https://chart-studio.plotly.com/~mgric/98/top-industries-2014/",
            "world_readable": true,
            "date_modified": "2016-01-06T01:10:47.003Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mgric/98/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mgric",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-11-18 18:58:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mgric",
                "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-07T23:16:54.991772Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rognab/49.embed",
            "fid": "rognab:49",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rognab%2F49%2F9_7804W03AFSBW2WJMSTA0ME3Y8NZD2W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rognab%2F49%2F2_PR7O2ZW8XDCC1QHK634F15JKGJ485U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rognab%2F49%2F8_UJ4DO1Y4TKQBRQ9PD87KAMO1LUKXVV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rognab%2F49%2F9_7804W03AFSBW2WJMSTA0ME3Y8NZD2W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rognab:49",
                "plots": "https://api.plotly.com/v2/plots/rognab:49",
                "parent": "https://api.plotly.com/v2/folders/home?user=rognab"
            },
            "owner": "rognab",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Space-Filling Curves.3",
            "views": 2503,
            "web_url": "https://chart-studio.plotly.com/~rognab/49/space-filling-curves3/",
            "world_readable": true,
            "date_modified": "2015-07-09T21:06:00.300Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rognab/49/",
            "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-26T15:00:09.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Powernap/13.embed",
            "fid": "Powernap:13",
            "filename": "Second and Third Component of the PCA",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Powernap%2F13%2F9_TESQYL4G1JJ7EOMPDIMKPCRT6BNNVO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Powernap%2F13%2F2_CCCQVZ1GELE951OAPRC1BF7ZRY16S3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Powernap%2F13%2F8_BUXL5TWLE90JF26VLK5BWHK6M3HD5C.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Powernap%2F13%2F9_TESQYL4G1JJ7EOMPDIMKPCRT6BNNVO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Powernap:13",
                "plots": "https://api.plotly.com/v2/plots/Powernap:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=Powernap"
            },
            "owner": "Powernap",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Second and Third Component of the PCA",
            "views": 2859,
            "web_url": "https://chart-studio.plotly.com/~Powernap/13/second-and-third-component-of-the-pca/",
            "world_readable": true,
            "date_modified": "2018-01-30T13:13:50.359Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Powernap/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Powernap",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "Paul",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-05-06 12:58:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Powernap",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}