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=cj0xJnA9MjAxOS0wNi0xNysxNCUzQTAyJTNBMzcuNTc5Mjg0JTJCMDAlM0EwMA%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=cD0yMDE5LTA2LTE3KzE0JTNBMDMlM0EyMi4zODgzNTUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNCUzQTEwJTNBMzguMDE1NDE2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T14:10:38.015416Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Powehi/10.embed",
            "fid": "Powehi:10",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Powehi/10/9_G5A7FMS2CRFRIAIWWXHNQ01R1931I4.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Powehi:10/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Powehi/10/8_A548IHAE1H1ON39OKKB0E3YZ1S1B5T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Powehi/10/9_G5A7FMS2CRFRIAIWWXHNQ01R1931I4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Powehi:10",
                "plots": "https://api.plotly.com/v2/plots/Powehi:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=Powehi"
            },
            "owner": "Powehi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "approved vs declined",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Powehi/10/approved-vs-declined/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:10:38.440Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Powehi/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7042950e-a6a3-45f7-a15e-1af43fc6228f",
                        "name": "approved",
                        "type": "scatter",
                        "xsrc": "Powehi:11:a73dac",
                        "ysrc": "Powehi:11:1105bc"
                    },
                    {
                        "uid": "db5af25b-8558-45a6-967d-92b8479252cb",
                        "name": "declined",
                        "type": "scatter",
                        "xsrc": "Powehi:11:a73dac",
                        "ysrc": "Powehi:11:dbe315"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Powehi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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-06-17 10:23:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Powehi",
                "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-17T14:09:10.045598Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~julesduv/1.embed",
            "fid": "julesduv:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/julesduv:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/julesduv/1/2_SUDE6DTRA7925NOVQAZH1JWS0OBNCN.png",
                "block-thumb": "https://api.plotly.com/v2/files/julesduv:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/julesduv:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/julesduv:1",
                "plots": "https://api.plotly.com/v2/plots/julesduv:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=julesduv"
            },
            "owner": "julesduv",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~julesduv/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:09:10.065Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~julesduv/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "julesduv:0:3ab597",
                        "ysrc": "julesduv:0:82e650",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Nb solved by tasks"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            19.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            13.68421052631579
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~julesduv",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.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-06-17 14:08:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "julesduv",
                "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-17T14:07:35.677445Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Wifkan/68.embed",
            "fid": "Wifkan:68",
            "filename": "plot from API (15)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Wifkan/68/9_BJNC5047EWJI6R8SAIOFGNTUVAOXR5.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Wifkan:68/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Wifkan/68/8_AI7CZM2FJRT6ZEOQ0MQ3VAIY0CFZ58.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Wifkan/68/9_BJNC5047EWJI6R8SAIOFGNTUVAOXR5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Wifkan:68",
                "plots": "https://api.plotly.com/v2/plots/Wifkan:68",
                "parent": "https://api.plotly.com/v2/folders/home?user=Wifkan"
            },
            "owner": "Wifkan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": " vs Vmg Surface",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Wifkan/68/vs-vmg-surface/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:07:36.500Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Wifkan/68/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "858ef3ba-741b-4660-92f9-f37ce58ae07a",
                        "isrc": "Wifkan:69:aef32b",
                        "jsrc": "Wifkan:69:ea562e",
                        "ksrc": "Wifkan:69:d7e67a",
                        "name": "",
                        "type": "mesh3d",
                        "xsrc": "Wifkan:69:81a084",
                        "ysrc": "Wifkan:69:537b07",
                        "zsrc": "Wifkan:69:1c9fb1",
                        "facecolorsrc": "Wifkan:69:5ed1e2"
                    },
                    {
                        "uid": "da8a4b5a-d7fd-43bb-a962-ebbd651e4b1c",
                        "line": {
                            "color": "rgb(50, 50, 50)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "Wifkan:69:a820bc",
                        "ysrc": "Wifkan:69:664834",
                        "zsrc": "Wifkan:69:bf3720",
                        "showlegend": false
                    },
                    {
                        "uid": "a082e555-ae6f-4f35-b388-afcf2e9361c9",
                        "mode": "markers",
                        "name": "Vmg Surface",
                        "type": "scatter3d",
                        "xsrc": "Wifkan:69:81a084",
                        "ysrc": "Wifkan:69:537b07",
                        "zsrc": "Wifkan:69:1c9fb1",
                        "marker": {
                            "size": 12,
                            "opacity": 0.8,
                            "colorsrc": "Wifkan:69:1b0b58",
                            "colorscale": "Viridis",
                            "reversescale": false
                        },
                        "textsrc": "Wifkan:69:afc65c"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Wifkan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.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-02-08 18:35:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Wifkan",
                "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-17T14:06:03.194342Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Wifkan/66.embed",
            "fid": "Wifkan:66",
            "filename": "plot from API (14)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Wifkan:66/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Wifkan/66/2_G81WH5FNM1X1BZN0TK2HM00UFF5Y87.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Wifkan/66/8_7O3EVHW5SQLEXJ9C50PMA9KY4ATDDM.png",
                "list-thumb": "https://api.plotly.com/v2/files/Wifkan:66/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Wifkan:66",
                "plots": "https://api.plotly.com/v2/plots/Wifkan:66",
                "parent": "https://api.plotly.com/v2/folders/home?user=Wifkan"
            },
            "owner": "Wifkan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Trisurf Plot",
            "views": 40,
            "web_url": "https://chart-studio.plotly.com/~Wifkan/66/trisurf-plot/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:06:03.799Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Wifkan/66/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0b90f0bd-1f07-4903-8e85-b60af9acb492",
                        "isrc": "Wifkan:67:d60180",
                        "jsrc": "Wifkan:67:b08cca",
                        "ksrc": "Wifkan:67:6cd55c",
                        "name": "",
                        "type": "mesh3d",
                        "xsrc": "Wifkan:67:538245",
                        "ysrc": "Wifkan:67:6d35af",
                        "zsrc": "Wifkan:67:f27bf8",
                        "facecolorsrc": "Wifkan:67:178aa7"
                    },
                    {
                        "uid": "c111af07-074b-492e-af0f-5c28ed0b573e",
                        "line": {
                            "color": "rgb(50, 50, 50)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "Wifkan:67:69fab0",
                        "ysrc": "Wifkan:67:36e742",
                        "zsrc": "Wifkan:67:f52e13",
                        "showlegend": false
                    },
                    {
                        "uid": "e95fdf06-c682-4022-a3a8-30ac105074a8",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "Wifkan:67:b3d925",
                        "ysrc": "Wifkan:67:831398",
                        "zsrc": "Wifkan:67:7cf572",
                        "marker": {
                            "size": 0.1,
                            "colorsrc": "Wifkan:67:d814a4",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "rgb(12, 51, 131)"
                                ],
                                [
                                    0.25,
                                    "rgb(10, 136, 186)"
                                ],
                                [
                                    0.5,
                                    "rgb(242, 211, 56)"
                                ],
                                [
                                    0.75,
                                    "rgb(242, 143, 56)"
                                ],
                                [
                                    1,
                                    "rgb(217, 30, 30)"
                                ]
                            ]
                        },
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(230, 230, 230)"
                        },
                        "yaxis": {
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(230, 230, 230)"
                        },
                        "zaxis": {
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(230, 230, 230)"
                        },
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Trisurf Plot"
                    },
                    "width": 800,
                    "height": 800
                }
            },
            "height": 800,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Wifkan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.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-02-08 18:35:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Wifkan",
                "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-17T14:05:20.116267Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rjt_1996/31.embed",
            "fid": "rjt_1996:31",
            "filename": "average_stint_duration",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/31/9_1UC86TW7YBVOCLJ6D00LZCM5ZXUXKM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/31/2_AXQRQ6VSD5N4D90UUXO2K5EHGHQK9O.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/31/8_58V5N7S7F9R1VJQ629VNL5SALR7EOG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/31/9_1UC86TW7YBVOCLJ6D00LZCM5ZXUXKM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rjt_1996:31",
                "plots": "https://api.plotly.com/v2/plots/rjt_1996:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=rjt_1996"
            },
            "owner": "rjt_1996",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~rjt_1996/31/",
            "world_readable": true,
            "date_modified": "2019-06-20T14:41:01.527Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rjt_1996/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a6c7f147-e92a-405b-9c70-695f67d70cd2",
                        "type": "table",
                        "cells": {
                            "valuessrc": "rjt_1996:90:848a0c"
                        },
                        "header": {
                            "valuessrc": "rjt_1996:90:35fa8b"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rjt_1996",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.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-06-14 16:12:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rjt_1996",
                "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-17T14:04:55.678847Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rjt_1996/29.embed",
            "fid": "rjt_1996:29",
            "filename": "number_of_stints_last_week",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/29/9_SNSK11RSG15ONN8F360J2AZ7PGAGFH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/29/2_02OPJKB6L22Y71S5VSB1WED2GOJ19L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/29/8_IYRSN03TOLGOJ22D7YFEY2JM4OCLEN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/29/9_SNSK11RSG15ONN8F360J2AZ7PGAGFH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rjt_1996:29",
                "plots": "https://api.plotly.com/v2/plots/rjt_1996:29",
                "parent": "https://api.plotly.com/v2/folders/home?user=rjt_1996"
            },
            "owner": "rjt_1996",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~rjt_1996/29/",
            "world_readable": true,
            "date_modified": "2019-06-20T14:40:59.782Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rjt_1996/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8dbbb2cd-ca52-4c4a-bc9d-c2eed860a990",
                        "type": "table",
                        "cells": {
                            "valuessrc": "rjt_1996:89:9e3261"
                        },
                        "header": {
                            "valuessrc": "rjt_1996:89:011300"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rjt_1996",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.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-06-14 16:12:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rjt_1996",
                "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-17T14:04:54.771321Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~FLH/6.embed",
            "fid": "FLH:6",
            "filename": "d3-chloropleth-map",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/FLH/6/9_JS2779QKBG633A06P3VWVX8BLEUSVB.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/FLH:6/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/FLH/6/8_U5Y9GZFFOJ240NXCNC9MDB0Y6K37IE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/FLH/6/9_JS2779QKBG633A06P3VWVX8BLEUSVB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/FLH:6",
                "plots": "https://api.plotly.com/v2/plots/FLH:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=FLH"
            },
            "owner": "FLH",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "State spending on education",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~FLH/6/state-spending-on-education/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:04:55.286Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~FLH/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "62f3ea4c-1cc0-4898-aae8-1be11280d9e8",
                        "type": "choropleth",
                        "zsrc": "FLH:7:223ea4",
                        "textsrc": "FLH:7:ca1225",
                        "colorbar": {
                            "title": {
                                "text": "thousand dollars"
                            }
                        },
                        "colorscale": "Blues",
                        "locationmode": "USA-states",
                        "locationssrc": "FLH:7:59cc69",
                        "autocolorscale": false
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "lakecolor": "rgb(66,165,245)",
                        "showlakes": true,
                        "projection": {
                            "type": "albers usa"
                        }
                    },
                    "title": {
                        "text": "State spending on education"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~FLH",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-15 09:43:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "FLH",
                "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-17T14:04:51.260782Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Powehi/8.embed",
            "fid": "Powehi:8",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Powehi:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Powehi/8/2_4QGNV6KSYJDKM2JVV84CFJH5H3QK5H.png",
                "block-thumb": "https://api.plotly.com/v2/files/Powehi:8/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Powehi:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Powehi:8",
                "plots": "https://api.plotly.com/v2/plots/Powehi:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=Powehi"
            },
            "owner": "Powehi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Powehi/8/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:04:51.666Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Powehi/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b53d24c9-5795-4ce5-9e00-47e9dbedfbea",
                        "type": "scatter",
                        "xsrc": "Powehi:9:29561d",
                        "ysrc": "Powehi:9:d2f64b"
                    },
                    {
                        "uid": "fa41f78e-9697-4608-9ef2-8cd8e863727e",
                        "type": "scatter",
                        "xsrc": "Powehi:9:29561d",
                        "ysrc": "Powehi:9:25b331"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Powehi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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-06-17 10:23:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Powehi",
                "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-17T14:04:45.772011Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~adijainsetter/116.embed",
            "fid": "adijainsetter:116",
            "filename": "Channel for the bottom 80%",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/adijainsetter:116/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/adijainsetter/116/2_4STRKZ8B6RAFROK38SP0BVIKBLUQ79.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/adijainsetter/116/8_SVM05CAEIU4UQ37PEP8DR0XXA4WYJK.png",
                "list-thumb": "https://api.plotly.com/v2/files/adijainsetter:116/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/adijainsetter:116",
                "plots": "https://api.plotly.com/v2/plots/adijainsetter:116",
                "parent": "https://api.plotly.com/v2/folders/home?user=adijainsetter"
            },
            "owner": "adijainsetter",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Channel for the bottom 80%",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~adijainsetter/116/channel-for-the-bottom-80/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:11:00.418Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~adijainsetter/116/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3ee2eb10-b584-4619-8b33-314d229380ba",
                        "name": "Clients Channel Reconciled",
                        "type": "histogram",
                        "xsrc": "adijainsetter:117:9e4cfa",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "percent",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Channel for the bottom 80%"
                    },
                    "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"
                    },
                    "barmode": "overlay",
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~adijainsetter",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.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": "2019-05-29 20:12:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "adijainsetter",
                "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-17T14:03:22.388355Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Powehi/6.embed",
            "fid": "Powehi:6",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Powehi:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Powehi:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Powehi:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Powehi:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Powehi:6",
                "plots": "https://api.plotly.com/v2/plots/Powehi:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=Powehi"
            },
            "owner": "Powehi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Volusion Transactions/Day (last update: 2017-07-07 08:46:00)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Powehi/6/volusion-transactionsday-last-update-2017-07-07-084600/",
            "world_readable": true,
            "date_modified": "2019-06-17T14:03:22.807Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Powehi/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "93142035-774e-486f-857f-6c4ba984f1f6",
                        "name": "approved",
                        "type": "scatter",
                        "xsrc": "Powehi:7:0da9ea",
                        "ysrc": "Powehi:7:b58c42"
                    },
                    {
                        "uid": "df51b770-da80-44a6-8ee8-30bb86f6464c",
                        "name": "declined",
                        "type": "scatter",
                        "xsrc": "Powehi:7:0da9ea",
                        "ysrc": "Powehi:7:a3a163"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Volusion Transactions/Day (last update: 2017-07-07 08:46:00)"
                    },
                    "barmode": "stack"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Powehi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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-06-17 10:23:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Powehi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}