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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE4KzAzJTNBMDIlM0EwNC45NDA4NzQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswMyUzQTA3JTNBMzcuNjI1MjIyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-18T03:07:37.625222Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~wanner.95/15.embed",
            "fid": "wanner.95:15",
            "filename": "Plot 15",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/wanner.95:15/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/wanner.95/15/2_CMX8DUTTLTD1PKMIIRTF8CZ0KABXUV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wanner.95/15/8_XU9P54NV635GW4ENU3Z7ACGLH5ZG7V.png",
                "list-thumb": "https://api.plotly.com/v2/files/wanner.95:15/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wanner.95:15",
                "plots": "https://api.plotly.com/v2/plots/wanner.95:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=wanner.95"
            },
            "owner": "wanner.95",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://plotly.com/~wanner.95/15/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:07:37.641Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~wanner.95/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "wanner.95:14:e36223",
                        "ysrc": "wanner.95:14:f6c72e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(152, 0, 0, .8)",
                                "width": 1
                            },
                            "size": 10,
                            "color": "rgba(255, 192, 182, 0.9)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "opacity": 0.81
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "rgb(26, 25, 25)"
                    },
                    "title": {
                        "font": {
                            "color": "rgb(33, 30, 30)"
                        },
                        "text": "Gráfico de Dispersión"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.27087956698240867,
                            6.180879566982409
                        ],
                        "title": {
                            "text": "gasto en alcohol - tabaco"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "zeroline": false,
                        "autorange": true,
                        "automargin": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.5332967032967034,
                            6.973296703296704
                        ],
                        "title": {
                            "text": "gasto en salud"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "zeroline": false,
                        "autorange": true,
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "modebar": {
                        "color": "rgba(8, 1, 1, 0.3)",
                        "activecolor": "rgba(54, 13, 13, 0.7)"
                    },
                    "colorway": [
                        "#4c78a8",
                        "#f58518",
                        "#e45756",
                        "#72b7b2",
                        "#54a24b",
                        "#eeca3b",
                        "#b279a2",
                        "#ff9da6",
                        "#9d755d",
                        "#bab0ac"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(231,231,240)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(183,183,191)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(234,234,242)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "rgb(234,234,242)",
                                "radialaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                }
                            },
                            "xaxis": {
                                "ticks": "",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "rgb(234,234,242)"
                            },
                            "colorway": [
                                "rgb(76,114,176)",
                                "rgb(221,132,82)",
                                "rgb(85,168,104)",
                                "rgb(196,78,82)",
                                "rgb(129,114,179)",
                                "rgb(147,120,96)",
                                "rgb(218,139,195)",
                                "rgb(140,140,140)",
                                "rgb(204,185,116)",
                                "rgb(100,181,205)"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#67001f"
                                    ],
                                    [
                                        0.1,
                                        "#b2182b"
                                    ],
                                    [
                                        0.2,
                                        "#d6604d"
                                    ],
                                    [
                                        0.3,
                                        "#f4a582"
                                    ],
                                    [
                                        0.4,
                                        "#fddbc7"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d1e5f0"
                                    ],
                                    [
                                        0.7,
                                        "#92c5de"
                                    ],
                                    [
                                        0.8,
                                        "#4393c3"
                                    ],
                                    [
                                        0.9,
                                        "#2166ac"
                                    ],
                                    [
                                        1,
                                        "#053061"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1,
                                        "rgb(250,234,220)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1,
                                        "rgb(250,234,220)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(234,234,242)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.5,
                                "fillcolor": "rgb(67,103,167)"
                            },
                            "annotationdefaults": {
                                "arrowcolor": "rgb(67,103,167)"
                            }
                        },
                        "themeRef": "SEABORN"
                    },
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgb(120, 120, 163)",
                    "paper_bgcolor": "rgb(235, 223, 223)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~wanner.95",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/76.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-16 16:28:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wanner.95",
                "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-18T03:07:31.898558Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~khuang316/14.embed",
            "fid": "khuang316:14",
            "filename": "JD Days from Session to Store Visit",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/khuang316:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/khuang316:14/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/khuang316:14/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/khuang316:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/khuang316:14",
                "plots": "https://api.plotly.com/v2/plots/khuang316:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=khuang316"
            },
            "owner": "khuang316",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time From Site to Store Visit Distribution",
            "views": 54,
            "web_url": "https://plotly.com/~khuang316/14/time-from-site-to-store-visit-distribution/",
            "world_readable": true,
            "date_modified": "2019-06-28T15:31:23.170Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~khuang316/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b908f0d5-9b2d-4d8b-a1ec-2fae92a378b8",
                        "name": "visit count",
                        "type": "bar",
                        "xsrc": "khuang316:15:9f6954",
                        "ysrc": "khuang316:15:43ac63",
                        "marker": {
                            "color": "lightblue"
                        }
                    },
                    {
                        "uid": "511a4739-e552-403d-ab67-78271ecee3b6",
                        "name": "running pct of total",
                        "type": "scatter",
                        "xsrc": "khuang316:15:9f6954",
                        "ysrc": "khuang316:15:02e5c6",
                        "marker": {
                            "color": "darkorchid"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time From Site to Store Visit Distribution"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "lightblue"
                            },
                            "text": "visit count"
                        }
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "darkorchid"
                            },
                            "text": "running pct of total"
                        },
                        "overlaying": "y",
                        "tickformat": "%"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~khuang316",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.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-11 17:11:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "khuang316",
                "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-18T03:05:34.273111Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~shaddyjr/2.embed",
            "fid": "shaddyjr:2",
            "filename": "Distplot with Multiple Bin Sizes",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/shaddyjr:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/shaddyjr:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shaddyjr/2/8_MOYVX5JYFPSJJ12DNVZOMSHFA4WI8P.png",
                "list-thumb": "https://api.plotly.com/v2/files/shaddyjr:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shaddyjr:2",
                "plots": "https://api.plotly.com/v2/plots/shaddyjr:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=shaddyjr"
            },
            "owner": "shaddyjr",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "sepal length (cm), sepal width (cm), petal length (cm), petal width (cm), sepal length (cm), sepal width (cm), petal length (cm), petal width (cm)",
            "views": 1,
            "web_url": "https://plotly.com/~shaddyjr/2/sepal-length-cm-sepal-width-cm-petal-length-cm-petal-width-cm-sepal-length-cm-se/",
            "world_readable": true,
            "date_modified": "2019-06-21T15:25:17.736Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~shaddyjr/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a6ae88f1-5606-4267-8429-ac9cc567c110",
                        "name": "sepal length (cm)",
                        "type": "histogram",
                        "xsrc": "shaddyjr:3:4db646",
                        "xaxis": "x",
                        "xbins": {
                            "end": 7.9,
                            "size": 0.5,
                            "start": 4.3
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "sepal length (cm)"
                    },
                    {
                        "uid": "fd2b89dd-e909-42f0-8026-8a7b2fed8567",
                        "name": "sepal width (cm)",
                        "type": "histogram",
                        "xsrc": "shaddyjr:3:923a04",
                        "xaxis": "x",
                        "xbins": {
                            "end": 4.4,
                            "size": 0.5,
                            "start": 2.0
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "sepal width (cm)"
                    },
                    {
                        "uid": "4c027f31-40c0-45c4-bea8-33183423f17a",
                        "name": "petal length (cm)",
                        "type": "histogram",
                        "xsrc": "shaddyjr:3:9a6a51",
                        "xaxis": "x",
                        "xbins": {
                            "end": 6.9,
                            "size": 0.5,
                            "start": 1.0
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "petal length (cm)"
                    },
                    {
                        "uid": "9a3c34a5-1ed6-4eef-85f6-5c3c7984293b",
                        "name": "petal width (cm)",
                        "type": "histogram",
                        "xsrc": "shaddyjr:3:cc9b4d",
                        "xaxis": "x",
                        "xbins": {
                            "end": 2.5,
                            "size": 0.5,
                            "start": 0.1
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "petal width (cm)"
                    },
                    {
                        "uid": "8aae79a1-c3b8-453b-a265-f34642c5c334",
                        "mode": "lines",
                        "name": "sepal length (cm)",
                        "type": "scatter",
                        "xsrc": "shaddyjr:3:447ebb",
                        "ysrc": "shaddyjr:3:5c13ca",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false,
                        "legendgroup": "sepal length (cm)"
                    },
                    {
                        "uid": "f22775e9-0f78-4df0-bf07-6d4e6b07b9b9",
                        "mode": "lines",
                        "name": "sepal width (cm)",
                        "type": "scatter",
                        "xsrc": "shaddyjr:3:9b9234",
                        "ysrc": "shaddyjr:3:14acd6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false,
                        "legendgroup": "sepal width (cm)"
                    },
                    {
                        "uid": "625d0f44-dbf7-49b9-a704-f32cf7c3c0a3",
                        "mode": "lines",
                        "name": "petal length (cm)",
                        "type": "scatter",
                        "xsrc": "shaddyjr:3:87d8ac",
                        "ysrc": "shaddyjr:3:740abd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false,
                        "legendgroup": "petal length (cm)"
                    },
                    {
                        "uid": "4f8f9a0a-482d-49ea-a4d2-1912b6ac60fc",
                        "mode": "lines",
                        "name": "petal width (cm)",
                        "type": "scatter",
                        "xsrc": "shaddyjr:3:a59f52",
                        "ysrc": "shaddyjr:3:577b33",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false,
                        "legendgroup": "petal width (cm)"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.0,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~shaddyjr",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.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-06-18 02:53:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shaddyjr",
                "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-18T03:04:21.513633Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~lala7873/2.embed",
            "fid": "lala7873:2",
            "filename": "multiple-axes-multiple",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/lala7873:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/lala7873:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/lala7873:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/lala7873:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lala7873:2",
                "plots": "https://api.plotly.com/v2/plots/lala7873:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=lala7873"
            },
            "owner": "lala7873",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "multiple y-axes example",
            "views": 0,
            "web_url": "https://plotly.com/~lala7873/2/multiple-y-axes-example/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:04:22.048Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~lala7873/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6accf992-7fff-4f9f-9701-1acbe6a687e6",
                        "name": "yaxis1 data",
                        "type": "scatter",
                        "xsrc": "lala7873:3:efc663",
                        "ysrc": "lala7873:3:184c3b"
                    },
                    {
                        "uid": "69ca1086-c76e-4517-a792-5cb51bfb34a5",
                        "name": "yaxis2 data",
                        "type": "scatter",
                        "xsrc": "lala7873:3:aa09d9",
                        "ysrc": "lala7873:3:dff276",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "58f254b6-03a1-483d-beda-6f4c9dd4c19a",
                        "name": "yaxis3 data",
                        "type": "scatter",
                        "xsrc": "lala7873:3:018552",
                        "ysrc": "lala7873:3:119fe6",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "c596ede6-c2a4-4945-bc70-d028e17e35fb",
                        "name": "yaxis4 data",
                        "type": "scatter",
                        "xsrc": "lala7873:3:be99ff",
                        "ysrc": "lala7873:3:0f55c5",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "multiple y-axes example"
                    },
                    "width": 800,
                    "xaxis": {
                        "domain": [
                            0.3,
                            0.7
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#1f77b4"
                            },
                            "text": "yaxis title"
                        },
                        "tickfont": {
                            "color": "#1f77b4"
                        }
                    },
                    "yaxis2": {
                        "side": "left",
                        "title": {
                            "font": {
                                "color": "#ff7f0e"
                            },
                            "text": "yaxis2 title"
                        },
                        "anchor": "free",
                        "position": 0.15,
                        "tickfont": {
                            "color": "#ff7f0e"
                        },
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "#d62728"
                            },
                            "text": "yaxis4 title"
                        },
                        "anchor": "x",
                        "tickfont": {
                            "color": "#d62728"
                        },
                        "overlaying": "y"
                    },
                    "yaxis4": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "#9467bd"
                            },
                            "text": "yaxis5 title"
                        },
                        "anchor": "free",
                        "position": 0.85,
                        "tickfont": {
                            "color": "#9467bd"
                        },
                        "overlaying": "y"
                    }
                }
            },
            "height": null,
            "width": 800,
            "user": {
                "profile_url": "https://plotly.com/~lala7873",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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-27 03:05:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lala7873",
                "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-18T03:03:47.712825Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jkulp/4.embed",
            "fid": "jkulp:4",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jkulp:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jkulp/4/2_SGK31VJV4Y9VT38UTGA7GGJPBN8N77.png",
                "block-thumb": "https://api.plotly.com/v2/files/jkulp:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jkulp:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jkulp:4",
                "plots": "https://api.plotly.com/v2/plots/jkulp:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=jkulp"
            },
            "owner": "jkulp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://plotly.com/~jkulp/4/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:03:48.279Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jkulp/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2f176114-a42f-45e1-89fa-5d7d243dcb48",
                        "type": "pie",
                        "labelssrc": "jkulp:5:62bb92",
                        "valuessrc": "jkulp:5:bfe43d"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~jkulp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 02:48:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jkulp",
                "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-18T03:03:47.000885Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~claudevdmf/40.embed",
            "fid": "claudevdmf:40",
            "filename": "stacked-bar",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/claudevdmf:40/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/claudevdmf:40/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/claudevdmf/40/8_FAISJOB78TKHG8CNF9AY68IR41JXQB.png",
                "list-thumb": "https://api.plotly.com/v2/files/claudevdmf:40/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/claudevdmf:40",
                "plots": "https://api.plotly.com/v2/plots/claudevdmf:40",
                "parent": "https://api.plotly.com/v2/folders/home?user=claudevdmf"
            },
            "owner": "claudevdmf",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Undergraduate, Graduate, Law, Continuing Education, Other",
            "views": 29,
            "web_url": "https://plotly.com/~claudevdmf/40/undergraduate-graduate-law-continuing-education-other/",
            "world_readable": true,
            "date_modified": "2019-06-19T22:53:16.521Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~claudevdmf/40/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "65bb5060-f52c-48db-a492-50d1722d4d65",
                        "name": "Undergraduate",
                        "type": "bar",
                        "xsrc": "claudevdmf:41:a53af5",
                        "ysrc": "claudevdmf:41:630766",
                        "orientation": "h"
                    },
                    {
                        "uid": "bca4818e-a866-4f30-a558-467988007692",
                        "name": "Graduate",
                        "type": "bar",
                        "xsrc": "claudevdmf:41:03ec1d",
                        "ysrc": "claudevdmf:41:630766",
                        "orientation": "h"
                    },
                    {
                        "uid": "a6a4ffdb-8c11-4338-a5df-154f9eb41264",
                        "name": "Law",
                        "type": "bar",
                        "xsrc": "claudevdmf:41:5907c4",
                        "ysrc": "claudevdmf:41:630766",
                        "orientation": "h"
                    },
                    {
                        "uid": "b4441cc7-fc3f-466f-bed2-c59fbff23090",
                        "name": "Continuing Education",
                        "type": "bar",
                        "xsrc": "claudevdmf:41:2bf4dc",
                        "ysrc": "claudevdmf:41:630766",
                        "orientation": "h"
                    },
                    {
                        "uid": "4d2a1b87-04e3-4687-80dc-ab5c21dadf13",
                        "name": "Other",
                        "type": "bar",
                        "xsrc": "claudevdmf:41:cc4e33",
                        "ysrc": "claudevdmf:41:630766",
                        "orientation": "h"
                    }
                ],
                "layout": {
                    "barmode": "stack"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~claudevdmf",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-01-28 16:06:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "claudevdmf",
                "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-18T03:03:43.568312Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~manikkalra/24.embed",
            "fid": "manikkalra:24",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/manikkalra:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manikkalra/24/2_Z9S6L1GQRBS72ZG2ZC018MYGUODLLG.png",
                "block-thumb": "https://api.plotly.com/v2/files/manikkalra:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/manikkalra:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manikkalra:24",
                "plots": "https://api.plotly.com/v2/plots/manikkalra:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=manikkalra"
            },
            "owner": "manikkalra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Volume",
            "views": 3,
            "web_url": "https://plotly.com/~manikkalra/24/volume/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:03:44.089Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~manikkalra/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e304c4c2-d33c-44be-9df5-39e138a8be52",
                        "type": "candlestick",
                        "xsrc": "manikkalra:25:a8a168",
                        "lowsrc": "manikkalra:25:e293bd",
                        "highsrc": "manikkalra:25:08c917",
                        "opensrc": "manikkalra:25:1cf9ea",
                        "closesrc": "manikkalra:25:f44af2"
                    },
                    {
                        "uid": "15bd866d-7846-40d6-b03b-5de30ff504b5",
                        "name": "Volume",
                        "type": "bar",
                        "xsrc": "manikkalra:25:a8a168",
                        "ysrc": "manikkalra:25:e2c351",
                        "yaxis": "y",
                        "marker": {
                            "colorsrc": "manikkalra:25:0c0687"
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "rangeslider": {
                            "visible": false
                        }
                    },
                    "plot_bgcolor": "rgb(0,0,0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://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-18T03:03:33.982029Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~ValerieWanQi/22.embed",
            "fid": "ValerieWanQi:22",
            "filename": "basic-scatter",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ValerieWanQi/22/9_R91MI3YZAYK12J58TV7ZNBTBB7205S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ValerieWanQi/22/2_ZS7Q97UIEGGZ7O1F1L7P5A6HM61YQ6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ValerieWanQi/22/8_MVE0A0JD6FJCKOHFQZX3GX11YTPAKO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ValerieWanQi/22/9_R91MI3YZAYK12J58TV7ZNBTBB7205S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ValerieWanQi:22",
                "plots": "https://api.plotly.com/v2/plots/ValerieWanQi:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=ValerieWanQi"
            },
            "owner": "ValerieWanQi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://plotly.com/~ValerieWanQi/22/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:04:03.191Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~ValerieWanQi/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7893c187-33de-4fcc-99c6-ab157ebb9d03",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "ValerieWanQi:23:f2bc83",
                        "ysrc": "ValerieWanQi:23:57c8b4"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~ValerieWanQi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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-17 01:34:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ValerieWanQi",
                "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-18T03:02:15.721191Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~manikkalra/22.embed",
            "fid": "manikkalra:22",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/manikkalra:22/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/manikkalra:22/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/manikkalra:22/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/manikkalra:22/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manikkalra:22",
                "plots": "https://api.plotly.com/v2/plots/manikkalra:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=manikkalra"
            },
            "owner": "manikkalra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://plotly.com/~manikkalra/22/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:02:16.219Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~manikkalra/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1ada022a-8cd2-46e2-8e8d-673c7a91b656",
                        "type": "candlestick",
                        "xsrc": "manikkalra:23:15f3de",
                        "lowsrc": "manikkalra:23:a50f57",
                        "highsrc": "manikkalra:23:c6ca33",
                        "opensrc": "manikkalra:23:1ae7fd",
                        "closesrc": "manikkalra:23:68526a"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "rangeslider": {
                            "visible": false
                        }
                    },
                    "plot_bgcolor": "rgb(0,0,0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://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-18T03:02:04.940874Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~manikkalra/20.embed",
            "fid": "manikkalra:20",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/manikkalra:20/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manikkalra/20/2_45N9DIVJ25JHEP18YVY89I0T9UZAZP.png",
                "block-thumb": "https://api.plotly.com/v2/files/manikkalra:20/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/manikkalra:20/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manikkalra:20",
                "plots": "https://api.plotly.com/v2/plots/manikkalra:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=manikkalra"
            },
            "owner": "manikkalra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Volume",
            "views": 3,
            "web_url": "https://plotly.com/~manikkalra/20/volume/",
            "world_readable": true,
            "date_modified": "2019-06-18T03:02:05.408Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~manikkalra/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8a57d744-5288-4e18-af2d-c4046675272d",
                        "type": "candlestick",
                        "xsrc": "manikkalra:21:d121ed",
                        "lowsrc": "manikkalra:21:c86806",
                        "highsrc": "manikkalra:21:f70ad0",
                        "opensrc": "manikkalra:21:953fb2",
                        "closesrc": "manikkalra:21:2edbec"
                    },
                    {
                        "uid": "63617c6d-4135-4836-8b96-52fcf57cdd85",
                        "name": "Volume",
                        "type": "bar",
                        "xsrc": "manikkalra:21:d121ed",
                        "ysrc": "manikkalra:21:b272c6",
                        "yaxis": "y",
                        "marker": {
                            "colorsrc": "manikkalra:21:01efea"
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "rangeslider": {
                            "visible": false
                        }
                    },
                    "plot_bgcolor": "rgb(0,0,0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://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
            }
        }
    ]
}