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-12-01T22:22:30.195440Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ElPolloFrio/3617.embed",
            "fid": "ElPolloFrio:3617",
            "filename": "KSTL_MinT_LTE0_all",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3617%2F9_7C21I2AM7DEZ9A73NK1I2D1TJEVR2W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3617%2F2_NH6INS1HOYJ5QDSRQP348PLIENTRVJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3617%2F8_FH06J422CMG4QGIK08H17HUNMO70N2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3617%2F9_7C21I2AM7DEZ9A73NK1I2D1TJEVR2W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ElPolloFrio:3617",
                "plots": "https://api.plotly.com/v2/plots/ElPolloFrio:3617",
                "parent": "https://api.plotly.com/v2/folders/home?user=ElPolloFrio"
            },
            "owner": "ElPolloFrio",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Minimum Temperatures <= 0 deg F<br>for the St. Louis Area, 1874 - 2014",
            "views": 191,
            "web_url": "https://chart-studio.plotly.com/~ElPolloFrio/3617/minimum-temperatures-for-the-st-louis-area-1874-2014/",
            "world_readable": true,
            "date_modified": "2015-12-01T22:22:30.228Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ElPolloFrio/3617/",
            "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
            },
            "figure": null,
            "autosize": null,
            "width": null,
            "height": 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": 397,
            "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-05-21T08:57:29.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PatrickMerlot/309.embed",
            "fid": "PatrickMerlot:309",
            "filename": "cc-pVTZ_3-21G",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PatrickMerlot%2F309%2F9_M0WLSS0VDL42259534GV99P4SHVENW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PatrickMerlot%2F309%2F2_043F41TGV1L9971F10I48C18WTPB9Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PatrickMerlot%2F309%2F8_8B79JDEZ15H7HMD0MBUDT6GYW8H5TC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PatrickMerlot%2F309%2F9_M0WLSS0VDL42259534GV99P4SHVENW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PatrickMerlot:309",
                "plots": "https://api.plotly.com/v2/plots/PatrickMerlot:309",
                "parent": "https://api.plotly.com/v2/folders/PatrickMerlot:308"
            },
            "owner": "PatrickMerlot",
            "parent": 308,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "&alpha;(X-x) in mEh vs &alpha;(K-k) in mEh",
            "views": 636,
            "web_url": "https://chart-studio.plotly.com/~PatrickMerlot/309/alphax-x-in-meh-vs-alphak-k-in-meh/",
            "world_readable": true,
            "date_modified": "2015-06-20T21:58:54.578Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PatrickMerlot/309/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PatrickMerlot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "Patrick Merlot",
                "website": "http://patechoc.github.io/",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-02-06 11:26:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PatrickMerlot",
                "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-18T23:42:39.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dreamshot/364.embed",
            "fid": "Dreamshot:364",
            "filename": "#254 (https:..pbs.twimg.com.media.Bi965UyIUAAYR86.png:large)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F364%2F9_9ELQBRWDGY8VMH5XKEBXVC7DKTRTAD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F364%2F2_27S90QPRK0HNC770B2ZBQY0XOVKKG0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F364%2F8_BUKECKZYSLNTYORXD2O4CNRP883WSO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F364%2F9_9ELQBRWDGY8VMH5XKEBXVC7DKTRTAD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dreamshot:364",
                "plots": "https://api.plotly.com/v2/plots/Dreamshot:364",
                "parent": "https://api.plotly.com/v2/folders/Dreamshot:98"
            },
            "owner": "Dreamshot",
            "parent": 98,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<b>Presidential and Gubernatorial Elections</b><br><br>Conditional correlation between party votes in midterm years in 32 states outside the South",
            "views": 600,
            "web_url": "https://chart-studio.plotly.com/~Dreamshot/364/presidential-and-gubernatorial-elections-conditional-correlation-between-party-v/",
            "world_readable": true,
            "date_modified": "2015-06-19T02:19:47.911Z",
            "collaborators": {
                "results": [
                    {
                        "profile_url": "https://chart-studio.plotly.com/~MattSundquist",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                        "bio": "",
                        "nickname": "",
                        "website": "matthewsundquist.com",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2012-12-19 03:08:16",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "MattSundquist",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    }
                ],
                "count": 1
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dreamshot/364/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Dreamshot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1396308157.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "Meteorologist with a flair for data analysis.",
                "nickname": "Ben",
                "website": "https://twitter.com/BenNollWeather",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-09-04 01:51:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dreamshot",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2016-05-05T01:54:58.574380Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~joshuaColin/118.embed",
            "fid": "joshuaColin:118",
            "filename": "DerivadaCurvasTipoCompletasRatio40",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/joshuaColin%2F118%2F9_W0JSUKR0G3J39Y8VGW6VU0G5LX8YBZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/joshuaColin%2F118%2F2_MYT9ODJK8R0BBTVAXO5J2UJFZ5P99E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/joshuaColin%2F118%2F8_ZJHS7K6E1K74XZ48N2QWCZG3QHM413.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/joshuaColin%2F118%2F9_W0JSUKR0G3J39Y8VGW6VU0G5LX8YBZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/joshuaColin:118",
                "plots": "https://api.plotly.com/v2/plots/joshuaColin:118",
                "parent": "https://api.plotly.com/v2/folders/joshuaColin:48"
            },
            "owner": "joshuaColin",
            "parent": 48,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "$\\left(t_D/r_D^2\\right)p'_{Df}$ vs $\\left(t_D/r_D^2\\right)$",
            "views": 139,
            "web_url": "https://chart-studio.plotly.com/~joshuaColin/118/leftt-dr-d2rightp-df-vs-leftt-dr-d2right/",
            "world_readable": true,
            "date_modified": "2016-10-13T03:21:56.605Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~joshuaColin/118/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~joshuaColin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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": "2016-04-06 06:24:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "joshuaColin",
                "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-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": 3881,
            "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
            }
        },
        {
            "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": 15606,
            "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
            }
        },
        {
            "creation_time": "2014-05-20T22:59:32.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~BethS/4.embed",
            "fid": "BethS:4",
            "filename": "Number of People with at Least $1m of investible assets, 2012",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/BethS%2F4%2F9_78TAN55O9PV7WLU6E8KVRXEUGE8X8H.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BethS%2F4%2F2_UU330U21ZBNNOBBKXD6GD5A7AR2XN8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BethS%2F4%2F8_VO3KL16W33OQ8MB9RM5R11UN8JDXMF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/BethS%2F4%2F9_78TAN55O9PV7WLU6E8KVRXEUGE8X8H.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BethS:4",
                "plots": "https://api.plotly.com/v2/plots/BethS:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=BethS"
            },
            "owner": "BethS",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>The Rich: Number of People with at Least $1m of investible assets, 2012",
            "views": 546,
            "web_url": "https://chart-studio.plotly.com/~BethS/4/the-rich-number-of-people-with-at-least-1m-of-investible-assets-2012/",
            "world_readable": true,
            "date_modified": "2015-06-18T23:50:11.114Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~BethS/4/",
            "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
            }
        },
        {
            "creation_time": "2014-05-23T21:40:33.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amelia/24.embed",
            "fid": "amelia:24",
            "filename": "piotr normalized",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/amelia%2F24%2F9_U24AHQ9KMJLTRZ6P45F1VHRMZUB0G9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/amelia%2F24%2F2_4AGJWKARTIQIZZG2S59O64L6GEES9L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/amelia%2F24%2F8_ZGLWCGH73GGIQ4QCXDSOCPP4PQJTRG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/amelia%2F24%2F9_U24AHQ9KMJLTRZ6P45F1VHRMZUB0G9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amelia:24",
                "plots": "https://api.plotly.com/v2/plots/amelia:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=amelia"
            },
            "owner": "amelia",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Normalized most popular 30 artists",
            "views": 695,
            "web_url": "https://chart-studio.plotly.com/~amelia/24/normalized-most-popular-30-artists/",
            "world_readable": true,
            "date_modified": "2015-07-09T07:48:23.860Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amelia/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amelia",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-11-26 21:15:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amelia",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2014-04-10T15:45:16.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~RhettAllain/78.embed",
            "fid": "RhettAllain:78",
            "filename": "lawn mowers",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F78%2F9_OO1KAHPWMEIH96ALZEEIHKA53QDYQM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F78%2F2_KKAM8793ZXGTJIKO5POWDJCCFDMWL6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F78%2F8_6FJMI863K0CVBS0M83F4MISZ63GLID.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F78%2F9_OO1KAHPWMEIH96ALZEEIHKA53QDYQM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/RhettAllain:78",
                "plots": "https://api.plotly.com/v2/plots/RhettAllain:78",
                "parent": "https://api.plotly.com/v2/folders/home?user=RhettAllain"
            },
            "owner": "RhettAllain",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Sound Level [dB] vs Distance [m]",
            "views": 34340,
            "web_url": "https://chart-studio.plotly.com/~RhettAllain/78/sound-level-db-vs-distance-m/",
            "world_readable": true,
            "date_modified": "2015-07-10T06:28:48.309Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~RhettAllain/78/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~RhettAllain",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406305592.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "Physics faculty and Wired Science Blogger.",
                "nickname": "Rhett Allain",
                "website": "http://www.wired.com/wiredscience/dotphysics",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-12-15 03:15:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "RhettAllain",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}