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?cursor=cj0xJnA9MjAxOS0wNi0xNysyMiUzQTA2JTNBNTkuNjc5MzY1JTJCMDAlM0EwMA%3D%3D&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzIyJTNBMDklM0EzNi4xNzcwNDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysyMiUzQTI4JTNBNTAuNTEwODc0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T22:28:50.510874Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~abibibo/16.embed",
            "fid": "abibibo:16",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/abibibo/16/9_BMTVRH5IK8FO97M3VKN4T83CUK67K6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/abibibo/16/2_PILV1AXBZO3A0KFYEO47WN4AVA1C53.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/abibibo/16/8_B1P3U8GYFBJY68G3TI5HPURW3MAO7I.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/abibibo/16/9_BMTVRH5IK8FO97M3VKN4T83CUK67K6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/abibibo:16",
                "plots": "https://api.plotly.com/v2/plots/abibibo:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=abibibo"
            },
            "owner": "abibibo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~abibibo/16/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:28:50.961Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~abibibo/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "box",
                        "ysrc": "abibibo:17:aa9fde",
                        "jitter": 0.3,
                        "pointpos": -1.8,
                        "boxpoints": "all"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~abibibo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-02-20 17:01:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "abibibo",
                "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": "2019-06-17T22:28:16.080826Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~abibibo/14.embed",
            "fid": "abibibo:14",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/abibibo/14/9_A7RKVJ636DKWIR81DBIHM5245BEWGS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/abibibo/14/2_NWL37OE3M705NEMLO0BUAPF294S9EV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/abibibo/14/8_L3UN325AWMSG8W47UY218JHK1WNIHH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/abibibo/14/9_A7RKVJ636DKWIR81DBIHM5245BEWGS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/abibibo:14",
                "plots": "https://api.plotly.com/v2/plots/abibibo:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=abibibo"
            },
            "owner": "abibibo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~abibibo/14/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:28:16.671Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~abibibo/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "box",
                        "ysrc": "abibibo:15:9f3df2"
                    },
                    {
                        "type": "box",
                        "ysrc": "abibibo:15:2039ac"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~abibibo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-02-20 17:01:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "abibibo",
                "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": "2019-06-17T22:27:41.395741Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jbaniha/14.embed",
            "fid": "jbaniha:14",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jbaniha/14/9_5T3RF71URSCOD0Y1K5DNHPOSJHGKTO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jbaniha/14/2_17IZFFNU3PU4AXWSKDSK1PNOI4TKBV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jbaniha/14/8_Y1PCRJN8AAMU3GB02AD6ORP4Z0QBKY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jbaniha/14/9_5T3RF71URSCOD0Y1K5DNHPOSJHGKTO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jbaniha:14",
                "plots": "https://api.plotly.com/v2/plots/jbaniha:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=jbaniha"
            },
            "owner": "jbaniha",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jbaniha/14/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:27:41.883Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jbaniha/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1dced9ba-914f-11e9-b5fa-b8ca3ad6c2d9",
                        "type": "box",
                        "ysrc": "jbaniha:15:7c62c3",
                        "jitter": 0.5,
                        "pointpos": -1.8,
                        "boxpoints": "all"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jbaniha",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.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": "2019-01-18 18:40:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jbaniha",
                "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": "2019-06-17T22:24:29.383861Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rbyashonant/2.embed",
            "fid": "rbyashonant:2",
            "filename": "Basic Distplot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/rbyashonant:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/rbyashonant:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/rbyashonant:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/rbyashonant:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rbyashonant:2",
                "plots": "https://api.plotly.com/v2/plots/rbyashonant:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=rbyashonant"
            },
            "owner": "rbyashonant",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "distplot, distplot, distplot",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~rbyashonant/2/distplot-distplot-distplot/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:43:48.052Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rbyashonant/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "eff8eb25-40f5-497b-8c1b-63c8920f48da",
                        "name": "distplot",
                        "type": "histogram",
                        "xsrc": "rbyashonant:3:c5b8b7",
                        "xaxis": "x",
                        "xbins": {
                            "end": 38970.0,
                            "size": 1.0,
                            "start": -11062.06
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "distplot"
                    },
                    {
                        "uid": "3435befa-dc5d-477f-b80b-77ed1b92687d",
                        "mode": "lines",
                        "name": "distplot",
                        "type": "scatter",
                        "xsrc": "rbyashonant:3:881343",
                        "ysrc": "rbyashonant:3:a05e68",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false,
                        "legendgroup": "distplot"
                    },
                    {
                        "uid": "d429bd3b-6229-48d9-b80e-e880a3a0de9f",
                        "mode": "markers",
                        "name": "distplot",
                        "type": "scatter",
                        "xsrc": "rbyashonant:3:c5b8b7",
                        "ysrc": "rbyashonant:3:1f070d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "distplot"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rbyashonant",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-13 19:18:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rbyashonant",
                "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": "2019-06-17T22:23:48.946370Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xyang6/34.embed",
            "fid": "xyang6:34",
            "filename": "plot from API (15)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xyang6/34/9_JZ2P7ZYY3YL0YUDGTKN8L87YIR44W8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xyang6/34/2_699WAX0VH59D9G8TON32U3Y9F2DB93.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xyang6/34/8_KBSOC1RZ6G8ETRKLLVJW8P0JX3SVD7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xyang6/34/9_JZ2P7ZYY3YL0YUDGTKN8L87YIR44W8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xyang6:34",
                "plots": "https://api.plotly.com/v2/plots/xyang6:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=xyang6"
            },
            "owner": "xyang6",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<br>Weekly Network",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~xyang6/34/weekly-network/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:23:49.424Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xyang6/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f433e69c-55c9-4f3c-abee-1dd32ae6a6d3",
                        "line": {
                            "color": "#888",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "xyang6:35:e7484e",
                        "ysrc": "xyang6:35:0afc71",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "42756dfb-0db1-40f8-b679-a5d178705996",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xyang6:35:e5b9dd",
                        "ysrc": "xyang6:35:dd92ab",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "colorbar": {
                                "title": {
                                    "side": "right",
                                    "text": "Node Connections"
                                },
                                "xanchor": "left",
                                "thickness": 15
                            },
                            "colorsrc": "xyang6:35:49df2a",
                            "showscale": true,
                            "colorscale": "Viridis",
                            "reversescale": true
                        },
                        "textsrc": "xyang6:35:b78ac8",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "<br>Weekly Network"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xyang6",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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": "2019-06-01 00:40:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xyang6",
                "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": "2019-06-17T22:19:30.025789Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~workinDead/8.embed",
            "fid": "workinDead:8",
            "filename": "d3-world-map",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/workinDead/8/9_KHVG34H2I4MJQCZR1W0S7P0314E3BD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/workinDead/8/2_T3JRUW787HSALI2N05R4JKK97GLLMH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/workinDead/8/8_5TO2ATLTS4FJXRFH9A2TXGO4UZEVAW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/workinDead/8/9_KHVG34H2I4MJQCZR1W0S7P0314E3BD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/workinDead:8",
                "plots": "https://api.plotly.com/v2/plots/workinDead:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=workinDead"
            },
            "owner": "workinDead",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "2014 Global GDP",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~workinDead/8/_2014-global-gdp/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:36:47.241Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~workinDead/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "96a35964-7c2a-48ef-826e-6d2c518267cf",
                        "type": "choropleth",
                        "zsrc": "workinDead:9:df0611",
                        "marker": {
                            "line": {
                                "color": "rgb(180,180,180)",
                                "width": 0.5
                            }
                        },
                        "textsrc": "workinDead:9:89957c",
                        "colorbar": {
                            "title": {
                                "text": "GDP<br>Billions US$"
                            },
                            "tickprefix": "$"
                        },
                        "colorscale": "Blues",
                        "locationssrc": "workinDead:9:71fc66",
                        "reversescale": true,
                        "autocolorscale": false
                    }
                ],
                "layout": {
                    "geo": {
                        "showframe": false,
                        "projection": {
                            "type": "equirectangular"
                        },
                        "showcoastlines": false
                    },
                    "title": {
                        "text": "2014 Global GDP"
                    },
                    "annotations": [
                        {
                            "x": 0.55,
                            "y": 0.1,
                            "text": "Source: <a href=\"https://www.cia.gov/library/publications/the-world-factbook/fields/2195.html\">            CIA World Factbook</a>",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~workinDead",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.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": "2019-06-17 21:43:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "workinDead",
                "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": "2019-06-17T22:19:14.075274Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~workinDead/6.embed",
            "fid": "workinDead:6",
            "filename": "Email-Location-Distribution",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/workinDead:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/workinDead/6/2_9WMF14T1JYIOWRIZMTHPBNYJHTFJUQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/workinDead/6/8_GYBTILLSYSR0T2DY2WE0L3MHCCCUGI.png",
                "list-thumb": "https://api.plotly.com/v2/files/workinDead:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/workinDead:6",
                "plots": "https://api.plotly.com/v2/plots/workinDead:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=workinDead"
            },
            "owner": "workinDead",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Email Location Distribution",
            "views": 14,
            "web_url": "https://chart-studio.plotly.com/~workinDead/6/email-location-distribution/",
            "world_readable": true,
            "date_modified": "2019-06-18T00:15:55.804Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~workinDead/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1de1c196-c3e3-4763-a77e-8250de986677",
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "workinDead:7:70a034",
                        "lonsrc": "workinDead:7:9148f1",
                        "marker": {
                            "size": 8,
                            "color": "#03b3b2",
                            "opacity": 0.2
                        },
                        "hoverinfo": "none"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Email Location Distribution"
                    },
                    "mapbox": {
                        "zoom": 1,
                        "pitch": 0,
                        "style": "light",
                        "center": {
                            "lat": 38,
                            "lon": -94
                        },
                        "bearing": 0,
                        "accesstoken": "pk.eyJ1Ijoid29ya2luZGVhZCIsImEiOiJjangwd2xqZnQwM2xpNDlteTlwbGF0Nnd4In0.F7H9LZn_Ddmc3pgKRt90lw"
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~workinDead",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.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": "2019-06-17 21:43:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "workinDead",
                "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": "2019-06-17T22:16:58.380308Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xyang6/32.embed",
            "fid": "xyang6:32",
            "filename": "plot from API (14)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xyang6/32/9_37UUHDBMJH34KY5TOP5SNQ5DHLBOTW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xyang6/32/2_SRZFAVT583I01M87I79EEYEKUBE2FA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xyang6/32/8_30SP01FZS0RV48UKU2EDZYGN7ABMTY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xyang6/32/9_37UUHDBMJH34KY5TOP5SNQ5DHLBOTW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xyang6:32",
                "plots": "https://api.plotly.com/v2/plots/xyang6:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=xyang6"
            },
            "owner": "xyang6",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<br>Weekly Network",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~xyang6/32/weekly-network/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:16:58.911Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xyang6/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "66a26e50-3683-4c46-9c4d-a2c6dace2837",
                        "line": {
                            "color": "#888",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "xyang6:33:e248b4",
                        "ysrc": "xyang6:33:720a86",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "e363b1ee-dc00-4c06-a07e-9845b92abcc5",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xyang6:33:052a4a",
                        "ysrc": "xyang6:33:bb3909",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "colorbar": {
                                "title": {
                                    "side": "right",
                                    "text": "Node Connections"
                                },
                                "xanchor": "left",
                                "thickness": 15
                            },
                            "colorsrc": "xyang6:33:47e174",
                            "showscale": true,
                            "colorscale": "Viridis",
                            "reversescale": true
                        },
                        "textsrc": "xyang6:33:fc0ba1",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "<br>Weekly Network"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xyang6",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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": "2019-06-01 00:40:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xyang6",
                "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": "2019-06-17T22:09:58.555717Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bcowden/28.embed",
            "fid": "bcowden:28",
            "filename": "repeated_labels_sunburst",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bcowden/28/9_4XWOU5XLVWW9X9MR8ZYK3X4BIHOLBC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bcowden/28/2_R55MOG9NGV74KL9353JVO45VHDVGXO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bcowden/28/8_G1SFB83FLCK2U6R5939J42NN89W40D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bcowden/28/9_4XWOU5XLVWW9X9MR8ZYK3X4BIHOLBC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bcowden:28",
                "plots": "https://api.plotly.com/v2/plots/bcowden:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=bcowden"
            },
            "owner": "bcowden",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bcowden/28/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:12:11.155Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bcowden/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1359eef3-8811-493a-bba7-488f277685cc",
                        "leaf": {
                            "opacity": 0.4
                        },
                        "type": "sunburst",
                        "idssrc": "bcowden:29:a4fc23",
                        "marker": {
                            "line": {
                                "width": 2
                            }
                        },
                        "labelssrc": "bcowden:29:86854e",
                        "parentssrc": "bcowden:29:3afc69",
                        "outsidetextfont": {
                            "size": 20,
                            "color": "#377eb8"
                        }
                    }
                ],
                "layout": {
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "sunburstcolorway": [
                        "#636efa",
                        "#ef553b",
                        "#00cc96"
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bcowden",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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": "2019-06-14 20:28:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bcowden",
                "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": "2019-06-17T22:09:36.177046Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xyang6/30.embed",
            "fid": "xyang6:30",
            "filename": "plot from API (13)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xyang6/30/9_XHWDENYJ4EW1NVUNDVOCZABQSG8YYD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xyang6/30/2_YKEKASZ88U6SK95XUZ6WIOSCPRB9P3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xyang6/30/8_IY1KBDCDINC0HBNM05FPH157Y3NMMH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xyang6/30/9_XHWDENYJ4EW1NVUNDVOCZABQSG8YYD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xyang6:30",
                "plots": "https://api.plotly.com/v2/plots/xyang6:30",
                "parent": "https://api.plotly.com/v2/folders/home?user=xyang6"
            },
            "owner": "xyang6",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<br>Weekly Network",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~xyang6/30/weekly-network/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:09:36.819Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xyang6/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "fdbbb0d7-1ac8-4171-8510-3e9d5387eb98",
                        "line": {
                            "color": "#888",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "xyang6:31:08d62e",
                        "ysrc": "xyang6:31:4dda7c",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "17c818d9-d755-49a3-9705-7076896f8771",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xyang6:31:1e2d92",
                        "ysrc": "xyang6:31:563b36",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "colorbar": {
                                "title": {
                                    "side": "right",
                                    "text": "Node Connections"
                                },
                                "xanchor": "left",
                                "thickness": 15
                            },
                            "colorsrc": "xyang6:31:2c8d56",
                            "showscale": true,
                            "colorscale": "Viridis",
                            "reversescale": true
                        },
                        "textsrc": "xyang6:31:642cf9",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "<br>Weekly Network"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xyang6",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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": "2019-06-01 00:40:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xyang6",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}