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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTAyKzEwJTNBNDIlM0EzOS4wNjk2ODAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wMisxMCUzQTQyJTNBMzkuMjQwMTA3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-02T10:42:39.240107Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/109.embed",
            "fid": "kirtisharma:109",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/109/9_889STM9WODNHJ7O279PE0VTP7G2949.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/109/2_B8SS0VC2LAT4B9S3ODEDT8W5QQ296A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/109/8_9GCGUQE91P2RHIQONTE5VSLWGEMWNP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/109/9_889STM9WODNHJ7O279PE0VTP7G2949.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:109",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:109",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/109/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.971Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/109/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:122:7aea0a",
                        "ysrc": "kirtisharma:122:3cccc4"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.237205Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/112.embed",
            "fid": "kirtisharma:112",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/112/9_6V6L85MYHLRORV9VSA4Z9NC7UU290F.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/112/2_I13G7MVKKMT5YK2VN964TD2FSMDUHN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/112/8_QH5O5TY6QVRZ4RSHTAGP4JRL9A5I3H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/112/9_6V6L85MYHLRORV9VSA4Z9NC7UU290F.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:112",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:112",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/112/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.754Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/112/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:119:1e1eb8",
                        "ysrc": "kirtisharma:119:576040"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.182937Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/110.embed",
            "fid": "kirtisharma:110",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/110/9_G2SPVLMPSB4MCENQ7B8B974042T7DS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/110/2_1NLQ0KR433K8M8GKDASP1003E53NAY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/110/8_NQOLEG7A6OCQ2S7WZNBDO0MNPYB3D6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/110/9_G2SPVLMPSB4MCENQ7B8B974042T7DS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:110",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:110",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/110/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.559Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/110/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:113:638299",
                        "ysrc": "kirtisharma:113:848cf8"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.178449Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/101.embed",
            "fid": "kirtisharma:101",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/101/9_GOSZM04HUWBJM4X8UNNN02J0VDPFP7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/101/2_8FU02O9F6R0PUR1O62DB74H8N2B4VY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/101/8_XJS8XDU1PVH77KZ25W3M0NXZZUPMOE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/101/9_GOSZM04HUWBJM4X8UNNN02J0VDPFP7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:101",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:101",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/101/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.989Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/101/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:118:9f406c",
                        "ysrc": "kirtisharma:118:16b8da"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.168006Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/106.embed",
            "fid": "kirtisharma:106",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/106/9_XXQZZNSZB1VH5A3XS9ESQJWQ242FUN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/106/2_N9BJJKJM9HVTLA56NX23K1AAJG6AB1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/106/8_V75AZH7SYLKID750UZ7SPVARBNNC41.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/106/9_XXQZZNSZB1VH5A3XS9ESQJWQ242FUN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:106",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:106",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/106/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.683Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/106/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:115:704cd0",
                        "ysrc": "kirtisharma:115:0f03d6"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.166670Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/107.embed",
            "fid": "kirtisharma:107",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/107/9_FHS9859UXCGRE6TXZG8TWU9YD5Y4Q4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/107/2_14NP60G1QURRU3OLOJZXC7T5SLHE8G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/107/8_SH4VV2J1J2C76I43FH6JZDSAU5OW7U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/107/9_FHS9859UXCGRE6TXZG8TWU9YD5Y4Q4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:107",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:107",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/107/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.581Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/107/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:111:31f2f6",
                        "ysrc": "kirtisharma:111:021602"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.118165Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/100.embed",
            "fid": "kirtisharma:100",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/100/9_KM32XG55Y0FN73WOSF0KCBAM4NRIP9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/100/2_DCUSJ9PK6M2HVVKFIQES2SPJR81JPE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/100/8_JUCHXF3I6OIW5UDTN1WG266LD3U7MT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/100/9_KM32XG55Y0FN73WOSF0KCBAM4NRIP9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:100",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:100",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/100/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.671Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/100/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:108:2e9eda",
                        "ysrc": "kirtisharma:108:c8c920"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.094012Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/99.embed",
            "fid": "kirtisharma:99",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/99/9_EL7XKS6SMTAPP9K0AZEZI2H7JITLKY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/99/2_QL67HLOSPRI71R5B3RNQYDLETQ6TG0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/99/8_LCF4I9LYTQTNU1NF1JF7RYODROOGP1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/99/9_EL7XKS6SMTAPP9K0AZEZI2H7JITLKY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:99",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:99",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/99/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.484Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/99/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:104:ca4ae6",
                        "ysrc": "kirtisharma:104:02ac42"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.077472Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/96.embed",
            "fid": "kirtisharma:96",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/96/9_7YPZXSGRYY6MZ47LA8AC05UACBXBXC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/96/2_EON9Z107VRRZMPTWSYD1JLDY9V1GUX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/96/8_K841PG6QU2OEOZ5FGS56HKLZO8JEN9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/96/9_7YPZXSGRYY6MZ47LA8AC05UACBXBXC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:96",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:96",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/96/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.763Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/96/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:105:3373c8",
                        "ysrc": "kirtisharma:105:bc4f38"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "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": "2024-04-02T10:42:39.069680Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/98.embed",
            "fid": "kirtisharma:98",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/98/9_GZ53ARMPB2JASV5KMWWPEGA1PXWHI7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/98/2_XZ39YMCUMB0J3RHWBRP3J4AXWLSLFU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/98/8_KOOBRCWCLDHQZVFXI4ICU0OYGQBWXR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/98/9_GZ53ARMPB2JASV5KMWWPEGA1PXWHI7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:98",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:98",
                "parent": "https://api.plotly.com/v2/folders/home?user=kirtisharma"
            },
            "owner": "kirtisharma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "RSSI",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~kirtisharma/98/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:39.776Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/98/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:103:c970fd",
                        "ysrc": "kirtisharma:103:968a47"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kirtisharma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 10:40:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kirtisharma",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}