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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzE4JTNBMjQlM0EwNy42MTU5NjAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsxOCUzQTI3JTNBMjkuNzg0MzIxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T18:27:29.784321Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ripan263/18.embed",
            "fid": "ripan263:18",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ripan263:18/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ripan263:18/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ripan263:18/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ripan263:18/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ripan263:18",
                "plots": "https://api.plotly.com/v2/plots/ripan263:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=ripan263"
            },
            "owner": "ripan263",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Emergency vs Non Emergency",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ripan263/18/emergency-vs-non-emergency/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:27:30.166Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ripan263/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "58b02e32-463c-4bd2-b9b5-faf0bdbc811b",
                        "name": "Emergency",
                        "type": "bar",
                        "xsrc": "ripan263:19:50c4ac",
                        "ysrc": "ripan263:19:253e73"
                    },
                    {
                        "uid": "d0902fd3-1b44-4617-82ef-f464122c03ba",
                        "name": "Non Emergency",
                        "type": "bar",
                        "xsrc": "ripan263:19:50c4ac",
                        "ysrc": "ripan263:19:869d6c"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ripan263",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.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-02-11 09:47:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ripan263",
                "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-03-20T18:26:49.952704Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tkarch/18.embed",
            "fid": "tkarch:18",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/tkarch:18/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/tkarch:18/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/tkarch:18/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/tkarch:18/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tkarch:18",
                "plots": "https://api.plotly.com/v2/plots/tkarch:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=tkarch"
            },
            "owner": "tkarch",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "total, proceed, predicted",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tkarch/18/total-proceed-predicted/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:26:50.416Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tkarch/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "592f71e0-4c5c-4422-8a8b-787307a2d39e",
                        "name": "total",
                        "type": "bar",
                        "xsrc": "tkarch:19:a8164a",
                        "ysrc": "tkarch:19:958be3"
                    },
                    {
                        "uid": "19c03f33-fb12-4052-8a7c-ecb857bf5627",
                        "name": "proceed",
                        "type": "bar",
                        "xsrc": "tkarch:19:a8164a",
                        "ysrc": "tkarch:19:05d3c5"
                    },
                    {
                        "uid": "d9c4b0cd-eebb-4706-8561-b1c3b3c04f95",
                        "name": "predicted",
                        "type": "bar",
                        "xsrc": "tkarch:19:a8164a",
                        "ysrc": "tkarch:19:bb8e9e"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tkarch",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-03-19 15:32:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tkarch",
                "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-03-20T18:26:19.593145Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tkarch/16.embed",
            "fid": "tkarch:16",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/tkarch:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/tkarch:16/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/tkarch:16/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/tkarch:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tkarch:16",
                "plots": "https://api.plotly.com/v2/plots/tkarch:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=tkarch"
            },
            "owner": "tkarch",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "total vs proceed",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tkarch/16/total-vs-proceed/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:26:20.160Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tkarch/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a21c5f67-0d30-4448-ac81-8b23c71f216d",
                        "mode": "lines",
                        "name": "total",
                        "type": "scatter",
                        "xsrc": "tkarch:17:42ebbd",
                        "ysrc": "tkarch:17:55463a"
                    },
                    {
                        "uid": "6def7110-d139-425d-9c02-ef3336b5e649",
                        "name": "proceed",
                        "type": "bar",
                        "xsrc": "tkarch:17:42ebbd",
                        "ysrc": "tkarch:17:2f3096"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tkarch",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-03-19 15:32:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tkarch",
                "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-03-20T18:25:23.684845Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ripan263/16.embed",
            "fid": "ripan263:16",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ripan263:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ripan263:16/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ripan263:16/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ripan263:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ripan263:16",
                "plots": "https://api.plotly.com/v2/plots/ripan263:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=ripan263"
            },
            "owner": "ripan263",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Emergency vs Non Emergency",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ripan263/16/emergency-vs-non-emergency/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:25:24.259Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ripan263/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cacff516-5ba9-4405-840b-1666d8fbf458",
                        "name": "Emergency",
                        "type": "bar",
                        "xsrc": "ripan263:17:d6e40d",
                        "ysrc": "ripan263:17:061285"
                    },
                    {
                        "uid": "a651c1fa-fe06-480c-aab8-2506e3bd3326",
                        "name": "Non Emergency",
                        "type": "bar",
                        "xsrc": "ripan263:17:d6e40d",
                        "ysrc": "ripan263:17:e7db94"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ripan263",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.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-02-11 09:47:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ripan263",
                "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-03-20T18:25:12.747157Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tkarch/14.embed",
            "fid": "tkarch:14",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/tkarch:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/tkarch:14/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/tkarch:14/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/tkarch:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tkarch:14",
                "plots": "https://api.plotly.com/v2/plots/tkarch:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=tkarch"
            },
            "owner": "tkarch",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "total vs proceed",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tkarch/14/total-vs-proceed/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:25:13.160Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tkarch/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2f24aa93-70be-4c9e-95e0-15602b76b683",
                        "mode": "lines",
                        "name": "total",
                        "type": "scatter",
                        "xsrc": "tkarch:15:affe53",
                        "ysrc": "tkarch:15:2e5691"
                    },
                    {
                        "uid": "982ec6bf-be8e-4ea3-9768-3bae438506af",
                        "name": "proceed",
                        "type": "bar",
                        "xsrc": "tkarch:15:08242e",
                        "ysrc": "tkarch:15:637b80"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tkarch",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-03-19 15:32:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tkarch",
                "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-03-20T18:25:08.266932Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shp557/351.embed",
            "fid": "shp557:351",
            "filename": "9.5_old_3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shp557/351/9_4ECI9GAF6SBDMJF4GOCCZXNS3FIVSE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shp557/351/2_YSX93KUC34CHASJUD9INP22BSMJX9X.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shp557/351/8_UNKGRL6FN26YBA3YZGG3X3D4HQQPZA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shp557/351/9_4ECI9GAF6SBDMJF4GOCCZXNS3FIVSE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shp557:351",
                "plots": "https://api.plotly.com/v2/plots/shp557:351",
                "parent": "https://api.plotly.com/v2/folders/home?user=shp557"
            },
            "owner": "shp557",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~shp557/351/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:25:09.502Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shp557/351/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "heatmap",
                        "zsrc": "shp557:352:",
                        "colorscale": "Viridis"
                    }
                ],
                "layout": {
                    "width": 350,
                    "xaxis": {
                        "ticks": "",
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "autorange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "ticks": "",
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "autorange": true,
                        "showticklabels": false
                    },
                    "height": 500
                }
            },
            "height": 500,
            "width": 350,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shp557",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-09-26 18:57:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shp557",
                "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-03-20T18:24:47.313415Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dpatel0698/24.embed",
            "fid": "dpatel0698:24",
            "filename": "interactive_state_health",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/dpatel0698:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dpatel0698:24/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dpatel0698:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/dpatel0698:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dpatel0698:24",
                "plots": "https://api.plotly.com/v2/plots/dpatel0698:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=dpatel0698"
            },
            "owner": "dpatel0698",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dpatel0698/24/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:24:47.782Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dpatel0698/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8c5e045f-92d9-4a7f-a68e-cd7ccaef35cf",
                        "type": "scatter",
                        "xsrc": "dpatel0698:25:119fc6",
                        "ysrc": "dpatel0698:25:36eeff",
                        "marker": {
                            "color": "blue"
                        },
                        "textsrc": "dpatel0698:25:7c0733",
                        "showlegend": false
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dpatel0698",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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": "2017-04-09 02:10:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dpatel0698",
                "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-03-20T18:24:31.809789Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tkarch/12.embed",
            "fid": "tkarch:12",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/tkarch:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/tkarch:12/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/tkarch:12/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/tkarch:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tkarch:12",
                "plots": "https://api.plotly.com/v2/plots/tkarch:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=tkarch"
            },
            "owner": "tkarch",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "total vs proceed",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tkarch/12/total-vs-proceed/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:24:32.421Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tkarch/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3824fa05-a8ae-41cc-8ddd-6dacb6abcd74",
                        "mode": "lines",
                        "name": "total",
                        "type": "scatter",
                        "xsrc": "tkarch:13:dfd58b",
                        "ysrc": "tkarch:13:a0c737"
                    },
                    {
                        "uid": "b2aba3c1-dfbc-4c6c-97c2-7176a59e71e9",
                        "name": "proceed",
                        "type": "bar",
                        "xsrc": "tkarch:13:dfd58b",
                        "ysrc": "tkarch:13:311924"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tkarch",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-03-19 15:32:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tkarch",
                "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-03-20T18:24:17.989764Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hmng/0.embed",
            "fid": "hmng:0",
            "filename": "grouped-bar",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hmng:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/hmng:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/hmng:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/hmng:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hmng:0",
                "plots": "https://api.plotly.com/v2/plots/hmng:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=hmng"
            },
            "owner": "hmng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "SF Zoo vs LA Zoo",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~hmng/0/sf-zoo-vs-la-zoo/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:24:48.222Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hmng/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e90cdfaa-df21-402f-83a0-c5ad3c6822d2",
                        "name": "SF Zoo",
                        "type": "bar",
                        "xsrc": "hmng:1:344cbc",
                        "ysrc": "hmng:1:30fe4d"
                    },
                    {
                        "uid": "162883b5-ecd3-4c23-8055-10f6894a71ba",
                        "name": "LA Zoo",
                        "type": "bar",
                        "xsrc": "hmng:1:344cbc",
                        "ysrc": "hmng:1:43f7dc"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hmng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.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": "2018-07-24 23:49:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hmng",
                "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-03-20T18:24:07.615960Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Salihimc/101.embed",
            "fid": "Salihimc:101",
            "filename": "Plot 101",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Salihimc:101/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Salihimc:101/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/101/8_8TJM38Q4QIF0MPDT9BB3KP0EMHLTX2.png",
                "list-thumb": "https://api.plotly.com/v2/files/Salihimc:101/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Salihimc:101",
                "plots": "https://api.plotly.com/v2/plots/Salihimc:101",
                "parent": "https://api.plotly.com/v2/folders/home?user=Salihimc"
            },
            "owner": "Salihimc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Salihimc/101/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:24:07.632Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Salihimc/101/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "17e63e6c-43e2-11e9-918b-60f677db332c",
                        "name": "Pharmaton 30",
                        "type": "bar",
                        "xsrc": "Salihimc:100:f764f3",
                        "ysrc": "Salihimc:100:9fc3a5",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1.5
                            },
                            "color": "#581E2D"
                        },
                        "textsrc": "Salihimc:100:2015c4",
                        "textposition": "auto"
                    },
                    {
                        "uid": "17e63e6d-43e2-11e9-8f43-60f677db332c",
                        "name": "Supradyn 30",
                        "type": "bar",
                        "xsrc": "Salihimc:100:f764f3",
                        "ysrc": "Salihimc:100:a8b282",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1.5
                            },
                            "color": "#FAE411"
                        },
                        "textsrc": "Salihimc:100:ba22be",
                        "textposition": "auto"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Pharmaton 30 vs. Supradyn FCT 30 Yearly Sales (2015 - 2018)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2014.5,
                            2018.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1812970.5263157894
                        ],
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Salihimc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.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-10-28 14:39:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Salihimc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}