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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzE4JTNBMTIlM0ExNi4wMzU5OTYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsxOCUzQTE0JTNBNDAuNzAwMTIzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T18:14:40.700123Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~valenvb/12.embed",
            "fid": "valenvb:12",
            "filename": "HIGH_BET -VERY_HIGH_BET-LOW_BET-VERY_LOW_BET-MEDIUM_BET",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/valenvb/12/9_QWUOF8M3CT0O9E6JM5RYL9KGMIB2FB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/valenvb/12/2_3ZD5TS7IE5HDT67XV01ASE3N15MZUV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/valenvb/12/8_G3QWI15X48CG2SHIYSMFPJ5TJJ5BB7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/valenvb/12/9_QWUOF8M3CT0O9E6JM5RYL9KGMIB2FB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/valenvb:12",
                "plots": "https://api.plotly.com/v2/plots/valenvb:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=valenvb"
            },
            "owner": "valenvb",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "HIGH_BET , VERY_HIGH_BET, LOW_BET, VERY_LOW_BET, MEDIUM_BET",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~valenvb/12/high-bet-very-high-bet-low-bet-very-low-bet-medium-bet/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:18:13.417Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~valenvb/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "HIGH_BET ",
                        "type": "scatter",
                        "xsrc": "valenvb:13:025465",
                        "ysrc": "valenvb:13:614579"
                    },
                    {
                        "name": "VERY_HIGH_BET",
                        "type": "scatter",
                        "xsrc": "valenvb:13:53bf84",
                        "ysrc": "valenvb:13:614579"
                    },
                    {
                        "name": "LOW_BET",
                        "type": "scatter",
                        "xsrc": "valenvb:13:a0539b",
                        "ysrc": "valenvb:13:614579"
                    },
                    {
                        "name": "VERY_LOW_BET",
                        "type": "scatter",
                        "xsrc": "valenvb:13:7c83fb",
                        "ysrc": "valenvb:13:614579"
                    },
                    {
                        "name": "MEDIUM_BET",
                        "type": "scatter",
                        "xsrc": "valenvb:13:2a95ed",
                        "ysrc": "valenvb:13:bf0c71"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~valenvb",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 16:15:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "valenvb",
                "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:14:19.657890Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bkaranfil/0.embed",
            "fid": "bkaranfil:0",
            "filename": "elevations-3d-surface",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bkaranfil:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bkaranfil:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/bkaranfil:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/bkaranfil:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bkaranfil:0",
                "plots": "https://api.plotly.com/v2/plots/bkaranfil:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=bkaranfil"
            },
            "owner": "bkaranfil",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Mt Bruno Elevation",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bkaranfil/0/mt-bruno-elevation/",
            "world_readable": true,
            "date_modified": "2019-03-22T11:38:09.661Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bkaranfil/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7c1886ea-6957-4182-a725-e2988c78bf31",
                        "type": "surface",
                        "zsrc": "bkaranfil:1:"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Mt Bruno Elevation"
                    },
                    "width": 500,
                    "height": 500,
                    "margin": {
                        "b": 65,
                        "l": 65,
                        "r": 50,
                        "t": 90
                    },
                    "autosize": false
                }
            },
            "height": 500,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bkaranfil",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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-03-20 18:08:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bkaranfil",
                "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:14:19.548486Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Salihimc/99.embed",
            "fid": "Salihimc:99",
            "filename": "Plot 99",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Salihimc/99/9_87BH95Z40R3U4B4ARPSJYHXTS3GAXI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Salihimc/99/2_RQGJ0THO7IF87AEJO79ZGCR9GETYSW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/99/8_UXUNZH5O0SBIMXQ8SRPKC0QCKK2I2O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/99/9_87BH95Z40R3U4B4ARPSJYHXTS3GAXI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Salihimc:99",
                "plots": "https://api.plotly.com/v2/plots/Salihimc:99",
                "parent": "https://api.plotly.com/v2/folders/home?user=Salihimc"
            },
            "owner": "Salihimc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Salihimc/99/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:14:19.565Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Salihimc/99/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "dddefc58-4b3b-11e9-acaf-60f677db332c",
                        "hole": 0.4,
                        "name": "(2016)",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0,
                                0.48
                            ],
                            "y": [
                                0.51,
                                1
                            ]
                        },
                        "marker": {
                            "colors": [
                                "#581E2D",
                                "#FAE411",
                                "rgb(79, 129, 102))",
                                "#1C8ABE"
                            ]
                        },
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "Salihimc:98:728273",
                        "valuessrc": "Salihimc:98:c5a626"
                    },
                    {
                        "uid": "dddefc59-4b3b-11e9-9425-60f677db332c",
                        "hole": 0.4,
                        "name": "(2017)",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0.52,
                                1
                            ],
                            "y": [
                                0.51,
                                1
                            ]
                        },
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "Salihimc:98:728273",
                        "valuessrc": "Salihimc:98:3816ff"
                    },
                    {
                        "uid": "dddefc5a-4b3b-11e9-b454-60f677db332c",
                        "hole": 0.4,
                        "name": "(2018)",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0,
                                0.48
                            ],
                            "y": [
                                0,
                                0.49
                            ]
                        },
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "Salihimc:98:728273",
                        "valuessrc": "Salihimc:98:9cb525"
                    },
                    {
                        "uid": "dddefc5b-4b3b-11e9-b85b-60f677db332c",
                        "hole": 0.4,
                        "name": "(2019)",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0.52,
                                1
                            ],
                            "y": [
                                0,
                                0.49
                            ]
                        },
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "Salihimc:98:728273",
                        "valuessrc": "Salihimc:98:c8c3b8"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 0.205,
                            "y": 0.801,
                            "font": {
                                "size": 18
                            },
                            "text": "2016",
                            "showarrow": false
                        },
                        {
                            "x": 0.793,
                            "y": 0.795,
                            "font": {
                                "size": 18
                            },
                            "text": "2017",
                            "showarrow": false
                        },
                        {
                            "x": 0.205,
                            "y": 0.21,
                            "font": {
                                "size": 18
                            },
                            "text": "2018",
                            "showarrow": false
                        },
                        {
                            "x": 0.795,
                            "y": 0.21,
                            "font": {
                                "size": 18
                            },
                            "text": "2019",
                            "showarrow": false
                        }
                    ]
                }
            },
            "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
            }
        },
        {
            "creation_time": "2019-03-20T18:13:29.380202Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LizzieLi521/22.embed",
            "fid": "LizzieLi521:22",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LizzieLi521/22/9_P4HBHKD9A7PZSIA71F3V1562W56OSJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LizzieLi521/22/2_V3IF5C89YQ5NYUFYMSHFGWYRLBCWDE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LizzieLi521/22/8_EJKIH87XJ4VBX2IDYYO6JICUPRIED7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LizzieLi521/22/9_P4HBHKD9A7PZSIA71F3V1562W56OSJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LizzieLi521:22",
                "plots": "https://api.plotly.com/v2/plots/LizzieLi521:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=LizzieLi521"
            },
            "owner": "LizzieLi521",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "simple pie chart",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~LizzieLi521/22/simple-pie-chart/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:13:29.880Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LizzieLi521/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ffc3e9c6-3355-460c-9e10-1db0926a442a",
                        "type": "pie",
                        "labelssrc": "LizzieLi521:23:683c2e",
                        "valuessrc": "LizzieLi521:23:94776d"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "simple pie chart"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LizzieLi521",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-18 17:23:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LizzieLi521",
                "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:12:45.815175Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JinPark/54.embed",
            "fid": "JinPark:54",
            "filename": "plot from API (22)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JinPark/54/9_BY1FWASXHBE45R7LALC6399XZOWUSX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JinPark/54/2_2LTE102LK7QBLOZ9ZL5LDXQ94VI1K9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/54/8_HB7A2H932IUGA05ET95G9XB7AJXG1C.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/54/9_BY1FWASXHBE45R7LALC6399XZOWUSX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JinPark:54",
                "plots": "https://api.plotly.com/v2/plots/JinPark:54",
                "parent": "https://api.plotly.com/v2/folders/home?user=JinPark"
            },
            "owner": "JinPark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_other",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JinPark/54/-other/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:12:45.826Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JinPark/54/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x": [],
                        "y": [],
                        "uid": "c6287086-d182-42fa-b543-fe8aff9bb968",
                        "type": "bar"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "_other"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JinPark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.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": "2018-12-20 18:24:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JinPark",
                "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:12:44.277736Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JinPark/52.embed",
            "fid": "JinPark:52",
            "filename": "plot from API (21)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JinPark/52/9_CAV64BGP9M4SW4SNBJSZ4T27UABRRG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JinPark/52/2_8LR13LHFFUA7T9OYYO8V3JS8D9X7WW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/52/8_L4I3ISVNS85DWB43BHRLD9A7W0ON7X.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/52/9_CAV64BGP9M4SW4SNBJSZ4T27UABRRG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JinPark:52",
                "plots": "https://api.plotly.com/v2/plots/JinPark:52",
                "parent": "https://api.plotly.com/v2/folders/home?user=JinPark"
            },
            "owner": "JinPark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Goal",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JinPark/52/goal/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:12:44.758Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JinPark/52/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "39eba261-db90-43e5-a990-1eef1d234307",
                        "type": "bar",
                        "xsrc": "JinPark:53:f9ef22",
                        "ysrc": "JinPark:53:3efdf3"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Goal"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JinPark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.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": "2018-12-20 18:24:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JinPark",
                "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:12:42.839176Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JinPark/50.embed",
            "fid": "JinPark:50",
            "filename": "plot from API (20)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JinPark/50/9_R3MH9TYM2TDWUZI8LKFSZQF414H7CO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JinPark/50/2_UYZQVE9OM6EMXKVAYL22PNBNWE0L4Q.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/50/8_IY5QGHMNX9L3YQ6SPIIIMYN6WSVMXF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/50/9_R3MH9TYM2TDWUZI8LKFSZQF414H7CO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JinPark:50",
                "plots": "https://api.plotly.com/v2/plots/JinPark:50",
                "parent": "https://api.plotly.com/v2/folders/home?user=JinPark"
            },
            "owner": "JinPark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Work",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JinPark/50/work/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:12:43.282Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JinPark/50/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f8bb7219-df60-440f-b743-7b5253744b6b",
                        "type": "bar",
                        "xsrc": "JinPark:51:74e1d1",
                        "ysrc": "JinPark:51:ee9b38"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Work"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JinPark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.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": "2018-12-20 18:24:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JinPark",
                "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:12:41.245565Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JinPark/48.embed",
            "fid": "JinPark:48",
            "filename": "plot from API (19)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JinPark/48/9_DHJBGBTNTCPKFNGZDQA1GFPAW6U4RZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JinPark/48/2_HE2WMKIBKUK9826HHGI2Y07ASGPF3T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/48/8_EOGG1TY4I8A52H3Z9UFLRX02T80MEV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/48/9_DHJBGBTNTCPKFNGZDQA1GFPAW6U4RZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JinPark:48",
                "plots": "https://api.plotly.com/v2/plots/JinPark:48",
                "parent": "https://api.plotly.com/v2/folders/home?user=JinPark"
            },
            "owner": "JinPark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Pomodoro",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JinPark/48/pomodoro/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:12:41.759Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JinPark/48/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b27b9011-b28c-4d05-b24b-764534bc44de",
                        "type": "bar",
                        "xsrc": "JinPark:49:e92c01",
                        "ysrc": "JinPark:49:a7b3a5"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Pomodoro"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JinPark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.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": "2018-12-20 18:24:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JinPark",
                "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:12:27.173948Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JinPark/46.embed",
            "fid": "JinPark:46",
            "filename": "plot from API (18)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JinPark/46/9_W87WRN0471XQ45UFND1S1WGK0AIFEH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JinPark/46/2_X8ME7PPYLHY1CXSZ2M3X09VF81UA9H.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/46/8_RBJEPP70CB7K0LM96TERD1ZHQGJ2VK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JinPark/46/9_W87WRN0471XQ45UFND1S1WGK0AIFEH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JinPark:46",
                "plots": "https://api.plotly.com/v2/plots/JinPark:46",
                "parent": "https://api.plotly.com/v2/folders/home?user=JinPark"
            },
            "owner": "JinPark",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_other",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~JinPark/46/-other/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:12:27.633Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JinPark/46/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9319d7fa-34f2-43d0-a315-59318b4ce56d",
                        "type": "bar",
                        "xsrc": "JinPark:47:3e5da2",
                        "ysrc": "JinPark:47:209b13"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "_other"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JinPark",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.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": "2018-12-20 18:24:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JinPark",
                "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:12:16.035996Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~valenvb/10.embed",
            "fid": "valenvb:10",
            "filename": "CARD_VALUE-CARD_VALUE-CARD_VALUE-CARD_VALUE-CARD_VALUE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/valenvb/10/9_YRF5M6PHZLT1L2YR0XJ34ZFFOHFHIK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/valenvb/10/2_5CT2A683OSSVZ43CRAFN3OU3B7RYE3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/valenvb/10/8_7VO5NYM7XT19TR0GJIHDXJ2E3DL6KN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/valenvb/10/9_YRF5M6PHZLT1L2YR0XJ34ZFFOHFHIK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/valenvb:10",
                "plots": "https://api.plotly.com/v2/plots/valenvb:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=valenvb"
            },
            "owner": "valenvb",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "CARD_VALUE, CARD_VALUE, CARD_VALUE, CARD_VALUE, CARD_VALUE",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~valenvb/10/card-value-card-value-card-value-card-value-card-value/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:12:16.527Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~valenvb/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "CARD_VALUE",
                        "type": "scatter",
                        "xsrc": "valenvb:11:2ded33",
                        "ysrc": "valenvb:11:017613"
                    },
                    {
                        "name": "CARD_VALUE",
                        "type": "scatter",
                        "xsrc": "valenvb:11:5bb2dd",
                        "ysrc": "valenvb:11:d8a427"
                    },
                    {
                        "name": "CARD_VALUE",
                        "type": "scatter",
                        "xsrc": "valenvb:11:4ece16",
                        "ysrc": "valenvb:11:017613"
                    },
                    {
                        "name": "CARD_VALUE",
                        "type": "scatter",
                        "xsrc": "valenvb:11:84fd0c",
                        "ysrc": "valenvb:11:d8a427"
                    },
                    {
                        "name": "CARD_VALUE",
                        "type": "scatter",
                        "xsrc": "valenvb:11:464ccd",
                        "ysrc": "valenvb:11:017613"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~valenvb",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 16:15:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "valenvb",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}