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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTAyKzEwJTNBNDIlM0EzNy4xMDM3MTUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wMisxMCUzQTQyJTNBMzcuODY4NzU3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-02T10:42:37.868757Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/36.embed",
            "fid": "kirtisharma:36",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/36/9_1J8QD29217PN6OF3S1HU8XHD6JCQLG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/36/2_O0TLNXYV1Q70AZ091HTJ0JF2TYVS4U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/36/8_RQXJ782THDDJ1RK8JTLOHI4QY9YI5T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/36/9_1J8QD29217PN6OF3S1HU8XHD6JCQLG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:36",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:36",
                "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/36/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:38.254Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:38:54fba9",
                        "ysrc": "kirtisharma:38:a69fa5"
                    }
                ],
                "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:37.861402Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/34.embed",
            "fid": "kirtisharma:34",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/34/9_26LSZZPJYTDS33L4RZOHYV3AQVEEG6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/34/2_N40XXBNOSNAMXNOPL2TPJZGS6AI86I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/34/8_LOUMPSHBTPKDFRSDQE8THEQ0D6UKUY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/34/9_26LSZZPJYTDS33L4RZOHYV3AQVEEG6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:34",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:34",
                "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/34/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:38.351Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:37:3d6bf2",
                        "ysrc": "kirtisharma:37:028870"
                    }
                ],
                "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:37.707955Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/32.embed",
            "fid": "kirtisharma:32",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/32/9_TXOCVYLIR4F41KOLDY2Y4BL8XFUXMT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/32/2_LHPH5J3PDM2QMZU4NIJMJYH1YS9SSL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/32/8_KFPYNDYNOU29J1H4KBMWDWDY5LPE7F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/32/9_TXOCVYLIR4F41KOLDY2Y4BL8XFUXMT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:32",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:32",
                "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/32/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:38.095Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:33:98c033",
                        "ysrc": "kirtisharma:33:605ee3"
                    }
                ],
                "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:37.635810Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/30.embed",
            "fid": "kirtisharma:30",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/30/9_TCPMP82ZASS6KBETF2W4M3G4N07Y1D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/30/2_W7C7TWFRNCS74F6G7V8XG9NXCRIYJP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/30/8_6K31ZI9HJQR6HHXMOQOWAA7I96ZT9P.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/30/9_TCPMP82ZASS6KBETF2W4M3G4N07Y1D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:30",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:30",
                "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/30/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.951Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:31:c3c1a9",
                        "ysrc": "kirtisharma:31:4666eb"
                    }
                ],
                "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:37.598951Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/28.embed",
            "fid": "kirtisharma:28",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/28/9_XDX68AEYHJ24AB1F64I26EP1ZL51YA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/28/2_I069CCGKIE7YSUIQF2VAM96WF41Y9D.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/28/8_7FCO2MG6PRFB25MFYWBWLERQ4IYIFL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/28/9_XDX68AEYHJ24AB1F64I26EP1ZL51YA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:28",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:28",
                "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/28/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.932Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:29:b6719f",
                        "ysrc": "kirtisharma:29:6c0e27"
                    }
                ],
                "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:37.502020Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/26.embed",
            "fid": "kirtisharma:26",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/26/9_HR1ZOP1AEHXX5TV3KGNABR6S7QX5PS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/26/2_B962MSQBN1EB24V5SQ7RC2ZR82D08I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/26/8_DN9GYV8E6NZS3D01GJL1OEV3HRT3FW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/26/9_HR1ZOP1AEHXX5TV3KGNABR6S7QX5PS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:26",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:26",
                "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/26/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.935Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:27:d6e48e",
                        "ysrc": "kirtisharma:27:6ab70a"
                    }
                ],
                "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:37.439571Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/24.embed",
            "fid": "kirtisharma:24",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/24/9_HVA1I5PYLFWMP8O5VCEY9XX0TG3Y7W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/24/2_YJHF7AMJY7TVETAAPSM0Y1P5EIOCM0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/24/8_2EENK314KP9KHJP5I1PZPGLUJ15C00.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/24/9_HVA1I5PYLFWMP8O5VCEY9XX0TG3Y7W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:24",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:24",
                "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/24/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.725Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:25:92be7c",
                        "ysrc": "kirtisharma:25:6d224c"
                    }
                ],
                "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:37.221327Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/22.embed",
            "fid": "kirtisharma:22",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/22/9_ZZ0TVPX3EBBN20ZTK9OXYBD7YJRO4W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/22/2_PFDQ3AE30NFSARK2X2K90468IRWVV7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/22/8_FPUYFFH62QDAKT96DUBQT9JXFGE0GD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/22/9_ZZ0TVPX3EBBN20ZTK9OXYBD7YJRO4W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:22",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:22",
                "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/22/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.545Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:23:e761f2",
                        "ysrc": "kirtisharma:23:91df51"
                    }
                ],
                "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:37.106915Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/18.embed",
            "fid": "kirtisharma:18",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/18/9_MBT910BQ42AJGI44Z1US1RTI27P1IL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/18/2_3JLJX4PQ065BDL0ZHZCK6CREJRC454.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/18/8_R3Z86CZJYVFPILR5TYEMT9YKQGDO4L.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/18/9_MBT910BQ42AJGI44Z1US1RTI27P1IL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:18",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:18",
                "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/18/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.400Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:21:f1d7fd",
                        "ysrc": "kirtisharma:21:448f2c"
                    }
                ],
                "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:37.103715Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kirtisharma/19.embed",
            "fid": "kirtisharma:19",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/19/9_94QAV9VPU466EQ1QW2KPBN1XA8RX51.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/19/2_N1FVG0V31KOSKTA3QGW28ZBZC48RJH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/19/8_VKRF69WYUK6RF30EQJ6ARJWC1MEIIL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kirtisharma/19/9_94QAV9VPU466EQ1QW2KPBN1XA8RX51.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kirtisharma:19",
                "plots": "https://api.plotly.com/v2/plots/kirtisharma:19",
                "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/19/rssi/",
            "world_readable": true,
            "date_modified": "2024-04-02T10:42:37.397Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kirtisharma/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "name": "RSSI",
                        "type": "scatter",
                        "xsrc": "kirtisharma:20:f5d104",
                        "ysrc": "kirtisharma:20:08fc37"
                    }
                ],
                "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
            }
        }
    ]
}