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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE2JTNBMDglM0E0MC4yNTc1ODMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNiUzQTE1JTNBNDAuNjczNDA0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T16:15:40.673404Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67072.embed",
            "fid": "amper:67072",
            "filename": "06-06-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67072/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67072/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67072/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67072/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67072",
                "plots": "https://api.plotly.com/v2/plots/amper:67072",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-06-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67072/_06-06-19-ds-1642-alg-5421-param-1250-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:24:03.189Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67072/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8c6e6bc2-2fb9-412a-976f-e6602d7dd3c8",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67073:e6b204",
                        "ysrc": "amper:67073:a8fb70",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "b85349e6-f852-4517-b1f7-47f5f173453e",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67073:e6b204",
                        "ysrc": "amper:67073:4866f3",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "57a5bcf2-90bd-4cdc-936a-6637bfdefc68",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67073:e6b204",
                        "ysrc": "amper:67073:097566",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-06-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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-17T16:14:56.867261Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67070.embed",
            "fid": "amper:67070",
            "filename": "06-05-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67070/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67070/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67070/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67070/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67070",
                "plots": "https://api.plotly.com/v2/plots/amper:67070",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-05-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67070/_06-05-19-ds-1642-alg-5421-param-1250-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:23:04.402Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67070/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d8fa3ddc-315d-4b9f-8a33-de60647ca17a",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67071:ee4ecb",
                        "ysrc": "amper:67071:91c2ce",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "2867d59e-2463-4407-a9d3-9a8f157072f8",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67071:ee4ecb",
                        "ysrc": "amper:67071:f3fece",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "c2b3140e-86a5-42e6-a2f7-33460373c0b8",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67071:ee4ecb",
                        "ysrc": "amper:67071:c40e6f",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-05-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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-17T16:14:44.986218Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jas_usc/283.embed",
            "fid": "jas_usc:283",
            "filename": "projection-matrix-Affs: LEMNISCATE Trajectory (20x)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jas_usc:283/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jas_usc:283/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jas_usc/283/8_PBKJN59QQ7XZAJUD9W0ZTWZ59LO5TB.png",
                "list-thumb": "https://api.plotly.com/v2/files/jas_usc:283/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jas_usc:283",
                "plots": "https://api.plotly.com/v2/plots/jas_usc:283",
                "parent": "https://api.plotly.com/v2/folders/jas_usc:252"
            },
            "owner": "jas_usc",
            "parent": 252,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PC1 vs.PC2: LEMNISCATE Trajectory (20x)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jas_usc/283/pc1-vspc2-lemniscate-trajectory-20x/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:15:50.296Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jas_usc/283/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2bc6ba87-7bf7-4e2c-bdb3-acbcff1890a7",
                        "mode": "markers",
                        "name": "Phase One",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:a885fe",
                        "ysrc": "jas_usc:284:096f7d",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#1D65A6",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "cfc2d27b-ccde-4f78-b40a-2249a9c175bd",
                        "mode": "markers",
                        "name": "Phase Two",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:6f3b90",
                        "ysrc": "jas_usc:284:44fc26",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#C0334D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "3ca5cd4b-9ff6-40f1-83b4-dff35ca262d0",
                        "mode": "markers",
                        "name": "Phase Three",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:130ee1",
                        "ysrc": "jas_usc:284:c6d039",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00743F",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "29860400-c24d-4ef0-8b07-96232cddf3ee",
                        "mode": "markers",
                        "name": "Phase Four",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:d50639",
                        "ysrc": "jas_usc:284:6cd453",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#F2A104",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "cb7ced29-befb-4d75-9cc3-8bb22fb04e99",
                        "mode": "markers",
                        "name": "Phase Five",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:02c4d6",
                        "ysrc": "jas_usc:284:baf17f",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#FF69B4",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "9df6a049-325a-4f83-99c4-db90fcf17b81",
                        "mode": "markers",
                        "name": "Phase Six",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:c36bc5",
                        "ysrc": "jas_usc:284:94edfd",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00CED1",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "3bb57fd4-a950-4dbe-a9d6-cfad61d7551e",
                        "mode": "markers",
                        "name": "Phase Seven",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:df42a2",
                        "ysrc": "jas_usc:284:6860c5",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#800080",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "9ac9bd2d-41c0-42f3-9051-4ab0ec4a2842",
                        "mode": "markers",
                        "name": "Phase Eight",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:25acbf",
                        "ysrc": "jas_usc:284:941239",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00FF00",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "22344e7e-18d8-4438-9219-4464bbb4a88b",
                        "mode": "markers",
                        "name": "Phase Nine",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:0d755e",
                        "ysrc": "jas_usc:284:31a64c",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#778899",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "bed972c4-b8db-4a9d-ba32-f4297c868173",
                        "mode": "markers",
                        "name": "Phase Ten",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:da999d",
                        "ysrc": "jas_usc:284:230c22",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#A0522D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "ce0ace02-c6f5-4b24-b5c2-5fd26423537a",
                        "mode": "markers",
                        "name": "Phase Eleven",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:886897",
                        "ysrc": "jas_usc:284:77f34d",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#1D65A6",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "e74a0f46-1442-476f-a98d-d5c250a46cd6",
                        "mode": "markers",
                        "name": "Phase Twelve",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:554c82",
                        "ysrc": "jas_usc:284:38b226",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#C0334D",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "8d376f08-97c2-47b2-aa74-a38047bfaee3",
                        "mode": "markers",
                        "name": "Phase Thirteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:4d1951",
                        "ysrc": "jas_usc:284:7b6b0d",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00743F",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "ad71df76-2a66-4693-a367-64d1b371fbe8",
                        "mode": "markers",
                        "name": "Phase Fourteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:8c2010",
                        "ysrc": "jas_usc:284:63fefe",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#F2A104",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "b7f9bdfd-f894-4088-ac00-c2bfbe8ea5cf",
                        "mode": "markers",
                        "name": "Phase Fifteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:b0f275",
                        "ysrc": "jas_usc:284:cee208",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#FF69B4",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "e3830187-bfb3-48dc-b249-55ddc5dc4923",
                        "mode": "markers",
                        "name": "Phase Sixteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:6c0b49",
                        "ysrc": "jas_usc:284:98c45e",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00CED1",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "747a4f58-b097-4685-9762-fbd2646781be",
                        "mode": "markers",
                        "name": "Phase Seventeen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:5d48ea",
                        "ysrc": "jas_usc:284:45ba88",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#800080",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "a83ddda0-219b-4545-a341-b80b8ebbc9d6",
                        "mode": "markers",
                        "name": "Phase Eighteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:70fa87",
                        "ysrc": "jas_usc:284:44f952",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#00FF00",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "ff61ed47-24b0-4517-893d-12b248050097",
                        "mode": "markers",
                        "name": "Phase Nineteen",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:dd05c2",
                        "ysrc": "jas_usc:284:9a8a49",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#778899",
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "3f6c6c80-199f-46bb-acfe-b3c41a55d87c",
                        "mode": "markers",
                        "name": "Phase Twenty",
                        "type": "scatter",
                        "xsrc": "jas_usc:284:615274",
                        "ysrc": "jas_usc:284:332ea1",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#A0522D",
                            "opacity": 0.8
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "PC1 vs.PC2: LEMNISCATE Trajectory (20x)"
                    },
                    "xaxis": {
                        "title": {
                            "text": "PC1"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "PC2"
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jas_usc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.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": "2015-11-09 00:19:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jas_usc",
                "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-17T16:14:20.171164Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67068.embed",
            "fid": "amper:67068",
            "filename": "06-04-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67068/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67068/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67068/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67068/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67068",
                "plots": "https://api.plotly.com/v2/plots/amper:67068",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-04-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67068/_06-04-19-ds-1642-alg-5421-param-1250-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:14:21.634Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67068/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "db2cf8d2-a8f9-4ab0-a9ff-4724337d924d",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67069:87355f",
                        "ysrc": "amper:67069:f74cfc",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "00822477-49e6-4be9-8f80-6c460e9d8fe1",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67069:87355f",
                        "ysrc": "amper:67069:0c8360",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "4c57a79f-b5b0-4ff3-bff6-7627df297638",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67069:87355f",
                        "ysrc": "amper:67069:b9eba4",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-04-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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-17T16:13:00.514085Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/10.embed",
            "fid": "dangnguyen:10",
            "filename": "Plotly Playground 2019-06-17 16:12:59",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/10/9_UZ55G2NZKXKR5HCDLOH1MDG0H1KHBO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/10/2_72T1WTNMDMVJF8408VNETB4BJA8TEJ.png",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:10/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/10/9_UZ55G2NZKXKR5HCDLOH1MDG0H1KHBO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:10",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/10/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:13:00.938Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "680fcd72-bed2-4f09-a6fe-d51618a914bb",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "# 0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:11:36c2a7",
                        "ysrc": "dangnguyen:11:221190"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.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-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "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-17T16:11:38.987453Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~unzule.keles/2.embed",
            "fid": "unzule.keles:2",
            "filename": "Time Series with Rangeslider",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/unzule.keles:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/unzule.keles:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/unzule.keles/2/8_C5FWU6L33NO18G7QUB25J3OOA604BE.png",
                "list-thumb": "https://api.plotly.com/v2/files/unzule.keles:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/unzule.keles:2",
                "plots": "https://api.plotly.com/v2/plots/unzule.keles:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=unzule.keles"
            },
            "owner": "unzule.keles",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time Series with Rangeslider",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~unzule.keles/2/time-series-with-rangeslider/",
            "world_readable": true,
            "date_modified": "2019-06-18T08:04:16.068Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~unzule.keles/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "922e6e7b-f2fa-4e8f-bc18-07aadb8e0a0f",
                        "line": {
                            "color": "#17BECF"
                        },
                        "name": "Antalya",
                        "type": "scatter",
                        "xsrc": "unzule.keles:3:aaed4c",
                        "ysrc": "unzule.keles:3:fa4c25",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d505f32e-d338-4817-82fb-f35fd2927b44",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "Alanya",
                        "type": "scatter",
                        "xsrc": "unzule.keles:3:aaed4c",
                        "ysrc": "unzule.keles:3:928599",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time Series with Rangeslider"
                    },
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~unzule.keles",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 15:13:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "unzule.keles",
                "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-17T16:09:38.159630Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Loonycorn123/2.embed",
            "fid": "Loonycorn123:2",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Loonycorn123:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Loonycorn123:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Loonycorn123:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Loonycorn123:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Loonycorn123:2",
                "plots": "https://api.plotly.com/v2/plots/Loonycorn123:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Loonycorn123"
            },
            "owner": "Loonycorn123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Loonycorn123/2/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:09:38.676Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Loonycorn123/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ae38bb56-9730-4efb-9193-fc8fee11c249",
                        "type": "scatter",
                        "xsrc": "Loonycorn123:3:9e84ad",
                        "ysrc": "Loonycorn123:3:385ebf"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Loonycorn123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.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-09-04 06:31:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Loonycorn123",
                "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-17T16:09:02.234801Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/8.embed",
            "fid": "dangnguyen:8",
            "filename": "Plotly Playground 2019-06-17 16:09:00",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/8/9_2IF6R3S55XTMWQSIM8R9RND80LHRBO.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dangnguyen:8/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:8/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/8/9_2IF6R3S55XTMWQSIM8R9RND80LHRBO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:8",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/8/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:09:03.283Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b38b06b5-c7aa-41f2-8b8e-2cda9b508bf2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "# 0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:9:a03029",
                        "ysrc": "dangnguyen:9:6bd066"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.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-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "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-17T16:08:45.513138Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~liudas/4.embed",
            "fid": "liudas:4",
            "filename": "Boy's Surface",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/liudas:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/liudas:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/liudas:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/liudas:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/liudas:4",
                "plots": "https://api.plotly.com/v2/plots/liudas:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=liudas"
            },
            "owner": "liudas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Boy's Surface",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~liudas/4/boys-surface/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:17:08.272Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~liudas/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "96db325d-5cd7-4f8e-be97-47dff1830331",
                        "isrc": "liudas:5:7dec00",
                        "jsrc": "liudas:5:7b65c6",
                        "ksrc": "liudas:5:2ec728",
                        "name": "",
                        "type": "mesh3d",
                        "xsrc": "liudas:5:045575",
                        "ysrc": "liudas:5:70e58e",
                        "zsrc": "liudas:5:de2452",
                        "facecolorsrc": "liudas:5:452a3f"
                    },
                    {
                        "uid": "88d41e69-1b7a-4c94-8056-a1353741ec58",
                        "line": {
                            "color": "rgb(50, 50, 50)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "liudas:5:101942",
                        "ysrc": "liudas:5:f64d47",
                        "zsrc": "liudas:5:2746ce",
                        "showlegend": false
                    },
                    {
                        "uid": "761eaa22-cff8-44a7-9b84-d079f9e53aab",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "liudas:5:c83642",
                        "ysrc": "liudas:5:d8e7bc",
                        "zsrc": "liudas:5:9a882e",
                        "marker": {
                            "size": 0.1,
                            "colorsrc": "liudas:5:080de0",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0.0,
                                    "rgb(50, 0, 75)"
                                ],
                                [
                                    0.5,
                                    "rgb(200, 0, 200)"
                                ],
                                [
                                    1.0,
                                    "rgb(200, 220, 200)"
                                ]
                            ]
                        },
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(230, 230, 230)"
                        },
                        "yaxis": {
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(230, 230, 230)"
                        },
                        "zaxis": {
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(230, 230, 230)"
                        },
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Boy's Surface"
                    },
                    "width": 800,
                    "height": 800
                }
            },
            "height": 800,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~liudas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.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-06-17 15:22:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "liudas",
                "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-17T16:08:40.257583Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dangnguyen/6.embed",
            "fid": "dangnguyen:6",
            "filename": "Plotly Playground 2019-06-17 16:08:38",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/6/9_0HUCXEXYVK4T58LCOUQMT3SLAMU9UT.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dangnguyen:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dangnguyen:6/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dangnguyen/6/9_0HUCXEXYVK4T58LCOUQMT3SLAMU9UT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dangnguyen:6",
                "plots": "https://api.plotly.com/v2/plots/dangnguyen:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=dangnguyen"
            },
            "owner": "dangnguyen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dangnguyen/6/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:08:41.164Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dangnguyen/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "96dc0892-dac2-431e-ac74-4a0eff971eec",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "# 0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "dangnguyen:7:eb9ff7",
                        "ysrc": "dangnguyen:7:1fee9f"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dangnguyen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.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-28 20:14:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dangnguyen",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}