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=cj0xJnA9MjAxOS0wNi0xOCswMiUzQTUzJTNBMDguODI4MjE1JTJCMDAlM0EwMA%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=cD0yMDE5LTA2LTE4KzAyJTNBNTMlM0EyNy42OTE5NjUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswMiUzQTU1JTNBNDAuMjAwOTAxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-18T02:55:40.200901Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nicolasferrari1984/2.embed",
            "fid": "nicolasferrari1984:2",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nicolasferrari1984/2/9_P22W7AVY8085KJQ2OCMEZ3B06H6O7J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nicolasferrari1984/2/2_HQPXFMC9JKB09LYU3UZ6Q0RHMIN6IN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolasferrari1984/2/8_3LG493EHRNBTOV8QROOTKCJJ7G7VMS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolasferrari1984/2/9_P22W7AVY8085KJQ2OCMEZ3B06H6O7J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nicolasferrari1984:2",
                "plots": "https://api.plotly.com/v2/plots/nicolasferrari1984:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=nicolasferrari1984"
            },
            "owner": "nicolasferrari1984",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nicolasferrari1984/2/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:55:40.679Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nicolasferrari1984/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a5de6f9d-42f0-463f-b7e8-d88cfd13f401",
                        "type": "table",
                        "cells": {
                            "fill": {
                                "colorsrc": "nicolasferrari1984:3:ba87a6"
                            },
                            "font": {
                                "size": 12,
                                "colorsrc": "nicolasferrari1984:3:9cf54c"
                            },
                            "line": {
                                "color": "#FFF"
                            },
                            "height": 27,
                            "alignsrc": "nicolasferrari1984:3:d50a51",
                            "valuessrc": "nicolasferrari1984:3:8b41ae,5bf940,62ef5e,670a37,edc743"
                        },
                        "domain": {
                            "x": [
                                0.3,
                                0.7
                            ],
                            "y": [
                                0,
                                0.37
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "white"
                            },
                            "line": {
                                "color": "white"
                            },
                            "height": 0
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nicolasferrari1984",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/78.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": "2019-06-18 01:36:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nicolasferrari1984",
                "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-18T02:55:26.300980Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manikkalra/8.embed",
            "fid": "manikkalra:8",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manikkalra/8/9_5K1QBTISKYN3PIQRBWNJ757EKY9P6W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manikkalra/8/2_OUAZ47HIWM8Y5B38JOQLBWVPKXA2IH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manikkalra/8/8_6Z1HEE1KF7CH04P5X8CX4ZIS5WEL22.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manikkalra/8/9_5K1QBTISKYN3PIQRBWNJ757EKY9P6W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manikkalra:8",
                "plots": "https://api.plotly.com/v2/plots/manikkalra:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=manikkalra"
            },
            "owner": "manikkalra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manikkalra/8/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:55:26.819Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manikkalra/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "738d9460-054c-444c-aced-1c73741200a1",
                        "type": "candlestick",
                        "xsrc": "manikkalra:9:4fb4da",
                        "lowsrc": "manikkalra:9:85d6f8",
                        "highsrc": "manikkalra:9:a0662b",
                        "opensrc": "manikkalra:9:6e5319",
                        "closesrc": "manikkalra:9:f4749e"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "rangeslider": {
                            "visible": false
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manikkalra",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 21:53:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manikkalra",
                "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-18T02:55:12.318715Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~taiana/43.embed",
            "fid": "taiana:43",
            "filename": "Plot 43",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/taiana/43/9_I22A544UMHP31UB76OHSGH584H5MF9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/taiana/43/2_TZXICZ4M30HIWR8LE9UVEFNMY17KY0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/taiana/43/8_Y3DFJ0XHRTBMD5WXSW3MPM7H89FVDY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/taiana/43/9_I22A544UMHP31UB76OHSGH584H5MF9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/taiana:43",
                "plots": "https://api.plotly.com/v2/plots/taiana:43",
                "parent": "https://api.plotly.com/v2/folders/home?user=taiana"
            },
            "owner": "taiana",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~taiana/43/",
            "world_readable": true,
            "date_modified": "2019-07-28T00:07:44.608Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~taiana/43/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "sort": true,
                        "type": "pie",
                        "textinfo": "percent",
                        "direction": "counterclockwise",
                        "labelssrc": "taiana:42:752d5c",
                        "valuessrc": "taiana:42:907b53",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15,
                        "family": "Arial"
                    },
                    "title": {
                        "text": "Pan-Genoma Complexo Mycobacterium tuberculosis"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "colorway": [
                        "#F8766D",
                        "#A3A500",
                        "#00BF7D",
                        "#00B0F6",
                        "#E76BF3"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    },
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#fcfbfd"
                            ],
                            [
                                0.125,
                                "#efedf5"
                            ],
                            [
                                0.25,
                                "#dadaeb"
                            ],
                            [
                                0.375,
                                "#bcbddc"
                            ],
                            [
                                0.5,
                                "#9e9ac8"
                            ],
                            [
                                0.625,
                                "#807dba"
                            ],
                            [
                                0.75,
                                "#6a51a3"
                            ],
                            [
                                0.875,
                                "#54278f"
                            ],
                            [
                                1,
                                "#3f007d"
                            ]
                        ]
                    },
                    "piecolorway": [
                        "#F8766D",
                        "#A3A500",
                        "#00BF7D",
                        "#00B0F6",
                        "#E76BF3"
                    ],
                    "extendpiecolors": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~taiana",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.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": "2019-05-27 23:51:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "taiana",
                "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-18T02:55:00.741287Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eddiem623/122.embed",
            "fid": "eddiem623:122",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/eddiem623/122/9_OF7F19176P4TX6NH24YK9GFLV1PNDZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eddiem623/122/2_5PUOWPY3N2RYMHKP66ACH2TUQ3DN0U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eddiem623/122/8_KHOPXU47LZ7KE3QJ0NIXWW7C6V7VF0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/eddiem623/122/9_OF7F19176P4TX6NH24YK9GFLV1PNDZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eddiem623:122",
                "plots": "https://api.plotly.com/v2/plots/eddiem623:122",
                "parent": "https://api.plotly.com/v2/folders/home?user=eddiem623"
            },
            "owner": "eddiem623",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Intensity_Plot",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~eddiem623/122/intensity-plot/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:55:01.637Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eddiem623/122/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b8855808-0809-4924-90ff-bff24f76ffd0",
                        "type": "surface",
                        "zsrc": "eddiem623:123:"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Intensity_Plot"
                    },
                    "width": 500,
                    "height": 500,
                    "margin": {
                        "b": 65,
                        "l": 65,
                        "r": 50,
                        "t": 90
                    },
                    "autosize": false
                }
            },
            "height": 500,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~eddiem623",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-11-27 20:24:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eddiem623",
                "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-18T02:55:00.540772Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manikkalra/6.embed",
            "fid": "manikkalra:6",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manikkalra/6/9_ZVJPDVYGBSDZJXOHUHN33YCSHA3VGE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manikkalra/6/2_LEFMXU051AZ52YMQQQFD4VNL27JF48.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manikkalra/6/8_2TI0EG3CSXZ2XQOG60JSN2ZG72NN9U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manikkalra/6/9_ZVJPDVYGBSDZJXOHUHN33YCSHA3VGE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manikkalra:6",
                "plots": "https://api.plotly.com/v2/plots/manikkalra:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=manikkalra"
            },
            "owner": "manikkalra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manikkalra/6/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:55:01.011Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manikkalra/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8003720a-96be-4029-966c-1609467c47c4",
                        "type": "candlestick",
                        "xsrc": "manikkalra:7:54b778",
                        "lowsrc": "manikkalra:7:7261da",
                        "highsrc": "manikkalra:7:6dc801",
                        "opensrc": "manikkalra:7:71dc08",
                        "closesrc": "manikkalra:7:ea43b4"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manikkalra",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 21:53:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manikkalra",
                "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-18T02:54:53.439746Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mmyskiw0109/0.embed",
            "fid": "mmyskiw0109:0",
            "filename": "Plotly Playground 2019-06-18 02:54:49",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mmyskiw0109/0/9_36S4WMSI54KZF48VD2SX3NSBZXUR0D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mmyskiw0109/0/2_KATAW6SBFJED5H5NRAQA0RQS81KI8I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mmyskiw0109/0/8_3ETFXFDKBB4JMYHS6YC3QPQD3K5H59.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mmyskiw0109/0/9_36S4WMSI54KZF48VD2SX3NSBZXUR0D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mmyskiw0109:0",
                "plots": "https://api.plotly.com/v2/plots/mmyskiw0109:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=mmyskiw0109"
            },
            "owner": "mmyskiw0109",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mmyskiw0109/0/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:54:53.863Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mmyskiw0109/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "405b609c-419f-4044-9822-30557c30bb16",
                        "name": "counts",
                        "text": "",
                        "type": "bar",
                        "xsrc": "mmyskiw0109:1:98796a",
                        "ysrc": "mmyskiw0109:1:abb64b",
                        "marker": {
                            "line": {
                                "color": "rgba(255, 153, 51, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(255, 153, 51, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "b47b0321-3f8c-445f-a6f9-dd11114bdac3",
                        "name": "occupation",
                        "text": "",
                        "type": "bar",
                        "xsrc": "mmyskiw0109:1:98796a",
                        "ysrc": "mmyskiw0109:1:617687",
                        "marker": {
                            "line": {
                                "color": "rgba(55, 128, 191, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(55, 128, 191, 0.6)"
                        },
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mmyskiw0109",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 02:49:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mmyskiw0109",
                "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-18T02:54:51.991690Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eddiem623/120.embed",
            "fid": "eddiem623:120",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/eddiem623/120/9_XZI5PL6EOTDYKUB1BU4HQXJITRFLW0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eddiem623/120/2_0BLI2VV2JNV9J063R4EW2IU4KT37JN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eddiem623/120/8_RPH7CPDO12U5OLNIH4RH1SZA6KYKR4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/eddiem623/120/9_XZI5PL6EOTDYKUB1BU4HQXJITRFLW0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eddiem623:120",
                "plots": "https://api.plotly.com/v2/plots/eddiem623:120",
                "parent": "https://api.plotly.com/v2/folders/home?user=eddiem623"
            },
            "owner": "eddiem623",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Intensity_Plot",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~eddiem623/120/intensity-plot/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:54:52.800Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eddiem623/120/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ba8713b7-4003-45b8-a018-c9a7b29eedda",
                        "type": "surface",
                        "zsrc": "eddiem623:121:"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Intensity_Plot"
                    },
                    "width": 500,
                    "height": 500,
                    "margin": {
                        "b": 65,
                        "l": 65,
                        "r": 50,
                        "t": 90
                    },
                    "autosize": false
                }
            },
            "height": 500,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~eddiem623",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-11-27 20:24:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eddiem623",
                "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-18T02:53:53.269437Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hyunilyoo/89.embed",
            "fid": "hyunilyoo:89",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/89/9_X8Y7H3CRCH4FLOFIZBXTB42NV665MF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/89/2_XC3P0QH0PNMX4HMYAJM2735G85BI4Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/89/8_OLN1VTZ9SO7XYJBQ2K5EB5YO5CPY3U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/89/9_X8Y7H3CRCH4FLOFIZBXTB42NV665MF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hyunilyoo:89",
                "plots": "https://api.plotly.com/v2/plots/hyunilyoo:89",
                "parent": "https://api.plotly.com/v2/folders/home?user=hyunilyoo"
            },
            "owner": "hyunilyoo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "wifi",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hyunilyoo/89/wifi/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:53:53.835Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hyunilyoo/89/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "49aaf5e9-435e-4a7d-98a1-92b3cfcf3529",
                        "type": "surface",
                        "zsrc": "hyunilyoo:90:",
                        "contours": {
                            "z": {
                                "show": true,
                                "project": {
                                    "z": true
                                },
                                "usecolormap": true,
                                "highlightcolor": "#42f462"
                            }
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "camera": {
                            "eye": {
                                "x": 1.87,
                                "y": 0.88,
                                "z": -0.64
                            }
                        }
                    },
                    "title": {
                        "text": "wifi"
                    },
                    "width": 500,
                    "height": 500,
                    "margin": {
                        "b": 65,
                        "l": 65,
                        "r": 50,
                        "t": 90
                    },
                    "autosize": false
                }
            },
            "height": 500,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hyunilyoo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-03-06 23:58:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hyunilyoo",
                "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-18T02:53:44.268003Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manikkalra/4.embed",
            "fid": "manikkalra:4",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manikkalra/4/9_SGBGXTS507PLXB2UK8Q641H6VFX78U.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manikkalra/4/2_15AMC53ZLVOIITUMXRH1FSUH98EFT4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manikkalra/4/8_ACD90IRCUBL81C7TT45BSTU3ZTZ8OJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manikkalra/4/9_SGBGXTS507PLXB2UK8Q641H6VFX78U.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manikkalra:4",
                "plots": "https://api.plotly.com/v2/plots/manikkalra:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=manikkalra"
            },
            "owner": "manikkalra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manikkalra/4/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:53:44.766Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manikkalra/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "95c9f796-0d4d-455a-a2ca-fe70a8853779",
                        "type": "candlestick",
                        "xsrc": "manikkalra:5:4760a9",
                        "lowsrc": "manikkalra:5:0b674b",
                        "highsrc": "manikkalra:5:973216",
                        "opensrc": "manikkalra:5:8d3329",
                        "closesrc": "manikkalra:5:fa5311"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manikkalra",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 21:53:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manikkalra",
                "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-18T02:53:27.691965Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hyunilyoo/87.embed",
            "fid": "hyunilyoo:87",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/87/9_4T1Y001PAKY880CSIQV2XSWQT3JER6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/87/2_LY2MXAACILJIL6HJ5Z8IHT279K3UDP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/87/8_MI78OXKG6CCG1KUDL29X2M9HVMU8IF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hyunilyoo/87/9_4T1Y001PAKY880CSIQV2XSWQT3JER6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hyunilyoo:87",
                "plots": "https://api.plotly.com/v2/plots/hyunilyoo:87",
                "parent": "https://api.plotly.com/v2/folders/home?user=hyunilyoo"
            },
            "owner": "hyunilyoo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "wifi",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hyunilyoo/87/wifi/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:53:28.632Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hyunilyoo/87/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f17f56b9-7d2f-446d-bd4e-23dae3fa28e8",
                        "type": "surface",
                        "zsrc": "hyunilyoo:88:",
                        "contours": {
                            "z": {
                                "show": true,
                                "project": {
                                    "z": true
                                },
                                "usecolormap": true,
                                "highlightcolor": "#42f462"
                            }
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "camera": {
                            "eye": {
                                "x": 1.87,
                                "y": 0.88,
                                "z": -0.64
                            }
                        }
                    },
                    "title": {
                        "text": "wifi"
                    },
                    "width": 500,
                    "height": 500,
                    "margin": {
                        "b": 65,
                        "l": 65,
                        "r": 50,
                        "t": 90
                    },
                    "autosize": false
                }
            },
            "height": 500,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hyunilyoo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-03-06 23:58:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hyunilyoo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}