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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTAyKzEwJTNBNDIlM0EzOS45MjE4MDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wMisxMCUzQTQyJTNBNDEuMjM0NTg1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-02T10:42:41.234585Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/176.embed",
            "fid": "kirtisharma:176",
            "filename": "plot from API (13)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/176/9_Z9KO681DZJNVWOLVJ4D4IROI2T4EOL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/176/2_0V65941USMACHFRYH2Z5ZJ2LCTUMU7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/176/8_DS1CB0RYOU67CMARZ3GRB502G2JF92.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/176/9_Z9KO681DZJNVWOLVJ4D4IROI2T4EOL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:176",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:176",
                "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/176/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:41.561Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/176/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:177:689928",
                        "ysrc": "kirtisharma:177:43affe"
                    }
                ],
                "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:41.043850Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/174.embed",
            "fid": "kirtisharma:174",
            "filename": "plot from API (13)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/174/9_ONQRXH2VN9HYFR27F9NWLLK9ZD59QR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/174/2_T2VLJWQB3OIGY4QOU0HQDJ5UG8W88W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/174/8_VEA1L50XKNU0MLTVUC6B2Z7IML49KP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/174/9_ONQRXH2VN9HYFR27F9NWLLK9ZD59QR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:174",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:174",
                "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/174/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:41.378Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/174/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:175:2cc7f5",
                        "ysrc": "kirtisharma:175:382019"
                    }
                ],
                "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:40.108844Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/170.embed",
            "fid": "kirtisharma:170",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/170/9_14BDKSLR2IFFK5NFCEDWVM7ITKSIR8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/170/2_OCDUIBKXWWZ2WKTSD9HNKHUB500XLL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/170/8_4G30R9DW2O7HWOWBWU85RKG3HEX9IE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/170/9_14BDKSLR2IFFK5NFCEDWVM7ITKSIR8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:170",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:170",
                "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/170/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.544Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/170/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:173:a817ba",
                        "ysrc": "kirtisharma:173:7ecc0e"
                    }
                ],
                "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:40.065434Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/165.embed",
            "fid": "kirtisharma:165",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/165/9_271ZITUTGXYK23WGYI213UATVNWPH6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/165/2_7C4CP6U4QGIKQEIQPD14AHIG4P6RFJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/165/8_H4AQ7PLKPK5Q10D995IBIARTWGA35F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/165/9_271ZITUTGXYK23WGYI213UATVNWPH6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:165",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:165",
                "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/165/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.531Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/165/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:172:e34d1f",
                        "ysrc": "kirtisharma:172:6d563b"
                    }
                ],
                "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:40.007115Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/160.embed",
            "fid": "kirtisharma:160",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/160/9_2EOGD1JTM1BR5YTX4RS1OPL5NW4GKH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/160/2_615C0U4HURQZNVDZ7Y7GGYC2UGYQ2F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/160/8_HRY9R0FCZ9HSR5OOLQTV4T7WHKESNP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/160/9_2EOGD1JTM1BR5YTX4RS1OPL5NW4GKH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:160",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:160",
                "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/160/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.463Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/160/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:171:c4cffb",
                        "ysrc": "kirtisharma:171:79b2f0"
                    }
                ],
                "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.957406Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/161.embed",
            "fid": "kirtisharma:161",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/161/9_BHG9BG8CD2K4A9G6QET143IKVFSRMI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/161/2_QBT56QS0S4STU1DVGOGS7M1XEKNNBF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/161/8_SGD1Q548I04980W9MGX83DU1EYGQK7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/161/9_BHG9BG8CD2K4A9G6QET143IKVFSRMI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:161",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:161",
                "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/161/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.346Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/161/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:168:593abe",
                        "ysrc": "kirtisharma:168:284081"
                    }
                ],
                "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.953097Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/151.embed",
            "fid": "kirtisharma:151",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/151/9_EZWU2AYC9TIRM0QJA4FZGOIDJTVBIA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/151/2_POS9RX12H85HFWX9Q8A3604C8KC23U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/151/8_X50LEBP3P2RHXOPFAXPPQ1O8WTRSMM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/151/9_EZWU2AYC9TIRM0QJA4FZGOIDJTVBIA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:151",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:151",
                "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/151/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.463Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/151/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:169:5cb5c3",
                        "ysrc": "kirtisharma:169:54a2ed"
                    }
                ],
                "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.937508Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/162.embed",
            "fid": "kirtisharma:162",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/162/9_KM51VPE1X5BT5KAPAIL5LD4A6JEOFB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/162/2_VP0GO5F8XOAC7BBYUMUP2JX7D496O8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/162/8_BR9L10TYLEM0HO4JX7THSDA5PPJ0ZM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/162/9_KM51VPE1X5BT5KAPAIL5LD4A6JEOFB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:162",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:162",
                "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/162/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.271Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/162/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:167:edec40",
                        "ysrc": "kirtisharma:167:bbb773"
                    }
                ],
                "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.923180Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/152.embed",
            "fid": "kirtisharma:152",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/152/9_6N5ODAPQ6GJPVH38QU7Q9RQB7MJX5U.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/152/2_INNR0NP8LSYVHX9H11GX1XP1YKV1TF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/152/8_HTHLE2SOQSKN68IMOUAD29BPEZ6M21.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/152/9_6N5ODAPQ6GJPVH38QU7Q9RQB7MJX5U.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:152",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:152",
                "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/152/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.430Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/152/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:166:3e2879",
                        "ysrc": "kirtisharma:166:a79137"
                    }
                ],
                "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.921806Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/158.embed",
            "fid": "kirtisharma:158",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/158/9_I5CSPK7LMJGB87UFW039VRS4A8RUFP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/158/2_NL2RL70FC3YR0CQO3HD07ZNAHUB1SV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/158/8_Y58GUQA27RDFBSVNM6EZBGJ72NWFVF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/158/9_I5CSPK7LMJGB87UFW039VRS4A8RUFP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:158",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:158",
                "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/158/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:40.279Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/158/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:164:ed783e",
                        "ysrc": "kirtisharma:164:30bbc5"
                    }
                ],
                "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
            }
        }
    ]
}