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

{
    "next": "https://api.plotly.com/v2/plots/feed",
    "previous": "https://api.plotly.com/v2/plots/feed",
    "results": [
        {
            "creation_time": "2015-07-07T22:54:37.284221Z",
            "parented": true,
            "embed_url": "https://plotly.com/~ahajibagheri/4.embed",
            "fid": "ahajibagheri:4",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ahajibagheri/4/9_G67WVKEGCLJDI6GJ0TCEBEKU47X36F.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ahajibagheri%2F4%2F2_A4ZVIYDWEKZ186BOGKNVH8EFXLFSZJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ahajibagheri%2F4%2F8_GBFAX4PKV2G3LSEB9BVHJKRXRCE5MX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ahajibagheri/4/9_G67WVKEGCLJDI6GJ0TCEBEKU47X36F.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ahajibagheri:4",
                "plots": "https://api.plotly.com/v2/plots/ahajibagheri:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=ahajibagheri"
            },
            "owner": "ahajibagheri",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>Clustering 3D plot based on Tsne scores",
            "views": 2357,
            "web_url": "https://plotly.com/~ahajibagheri/4/clustering-3d-plot-based-on-tsne-scores/",
            "world_readable": true,
            "date_modified": "2015-07-07T22:54:41.131Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~ahajibagheri/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~ahajibagheri",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-06-12 18:50:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ahajibagheri",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            },
            "figure": null,
            "autosize": null,
            "width": null,
            "height": null
        },
        {
            "creation_time": "2014-08-12T10:59:31.000000Z",
            "parented": true,
            "embed_url": "https://plotly.com/~MattSundquist/1896.embed",
            "fid": "MattSundquist:1896",
            "filename": "LaTeX and matplotlib",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/1896/9_N81F05HRVL0CTRAZMD2JJS6JYYFVW6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F1896%2F2_HHL0XVPEWMRX4ZQOTPIOP53YCFZXBK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F1896%2F8_4UMXSP5BPV34ASJ6VRNJ9556VTB12O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/1896/9_N81F05HRVL0CTRAZMD2JJS6JYYFVW6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MattSundquist:1896",
                "plots": "https://api.plotly.com/v2/plots/MattSundquist:1896",
                "parent": "https://api.plotly.com/v2/folders/home?user=MattSundquist"
            },
            "owner": "MattSundquist",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "/$LaTeX$",
            "views": 3938,
            "web_url": "https://plotly.com/~MattSundquist/1896/latex/",
            "world_readable": true,
            "date_modified": "2015-06-29T12:56:23.891Z",
            "collaborators": {
                "results": [
                    {
                        "profile_url": "https://plotly.com/~MatthewLSundquist",
                        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                        "bio": "",
                        "nickname": "",
                        "website": "",
                        "stream_tokens": null,
                        "feature_set_id": null,
                        "csrf_token": null,
                        "date_joined": "2012-12-25 19:17:45",
                        "mapbox_access_tokens": null,
                        "has_password": null,
                        "username": "MatthewLSundquist",
                        "email": null,
                        "is_active": null,
                        "readonly": null,
                        "is_dash_creator": null,
                        "dash_created_count": null,
                        "is_chart_creator": null,
                        "charts_created_count": null
                    }
                ],
                "count": 1
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~MattSundquist/1896/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~MattSundquist",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "matthewsundquist.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-12-19 03:08:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MattSundquist",
                "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": "2014-05-20T23:11:30.000000Z",
            "parented": true,
            "embed_url": "https://plotly.com/~BethS/1.embed",
            "fid": "BethS:1",
            "filename": "Anticipated Personal Spending for 2013 Christmas Gifts",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/BethS%2F1%2F9_9782V2KHOSPJRPHU7YB50DR27Q5GIF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BethS%2F1%2F2_VE3H1JEDRIWAP6QUEDD64RHADSWBC5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BethS%2F1%2F8_J5OHV4UZEPG60AX32NQIT55FXJZSMK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/BethS%2F1%2F9_9782V2KHOSPJRPHU7YB50DR27Q5GIF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BethS:1",
                "plots": "https://api.plotly.com/v2/plots/BethS:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=BethS"
            },
            "owner": "BethS",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Christmas Gifts<br>Anticipated Personal Spending for 2013, USD",
            "views": 693,
            "web_url": "https://plotly.com/~BethS/1/christmas-gifts-anticipated-personal-spending-for-2013-usd/",
            "world_readable": true,
            "date_modified": "2015-06-20T05:37:06.614Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~BethS/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~BethS",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-05-20 22:54:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "BethS",
                "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": "2014-10-13T19:31:25.463426Z",
            "parented": true,
            "embed_url": "https://plotly.com/~Vox/17.embed",
            "fid": "Vox:17",
            "filename": "Cumulative Emissions from Fossil-Fuel and Cement (1870-2013)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Vox%2F17%2F9_OWWL8KC39V2NTIBXII0J4ACH34FXKD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Vox%2F17%2F2_8FF598VO21JWH1T0GVPI5PZYQ2C6GE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Vox%2F17%2F8_R6RO4F3KKNWK3TWJN2ZLP52C00M9RQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Vox%2F17%2F9_OWWL8KC39V2NTIBXII0J4ACH34FXKD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Vox:17",
                "plots": "https://api.plotly.com/v2/plots/Vox:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=Vox"
            },
            "owner": "Vox",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<br>Cumulative Emissions from Fossil-Fuel and Cement (1870-2013)",
            "views": 4414,
            "web_url": "https://plotly.com/~Vox/17/cumulative-emissions-from-fossil-fuel-and-cement-1870-2013/",
            "world_readable": true,
            "date_modified": "2015-07-09T08:56:19.929Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~Vox/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~Vox",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406611524.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "Interactive Plotly versions of graphs originally created by Vox:",
                "nickname": "",
                "website": "http://www.vox.com/",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-03-24 00:54:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Vox",
                "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": "2015-12-27T01:33:57.998603Z",
            "parented": true,
            "embed_url": "https://plotly.com/~dalisayd/3.embed",
            "fid": "dalisayd:3",
            "filename": "bubblechart-size",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dalisayd%2F3%2F9_14I43L256HYZZVO264B3WYTPCP3FAQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dalisayd%2F3%2F2_N466PWEL4RCFKL248SKBC8OG2Z334L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dalisayd%2F3%2F8_WB3M8IBEQ39RM3BDT6E83URMXJFYFF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dalisayd%2F3%2F9_14I43L256HYZZVO264B3WYTPCP3FAQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dalisayd:3",
                "plots": "https://api.plotly.com/v2/plots/dalisayd:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=dalisayd"
            },
            "owner": "dalisayd",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Taylor Swift Lyrics - Top 10 Most Frequently Used Words Per Album",
            "views": 8472,
            "web_url": "https://plotly.com/~dalisayd/3/taylor-swift-lyrics-top-10-most-frequently-used-words-per-album/",
            "world_readable": true,
            "date_modified": "2015-12-27T01:33:58.350Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~dalisayd/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~dalisayd",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/52.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "dalisayd",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-10-07 20:59:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dalisayd",
                "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": "2015-06-11T15:55:18.590414Z",
            "parented": true,
            "embed_url": "https://plotly.com/~chris/10796.embed",
            "fid": "chris:10796",
            "filename": "3D Surface Yield Curve",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chris%2F10796%2F9_XHYN96IK58AJFKNTSY98ZNZHPRQ6ZR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chris%2F10796%2F2_U3UOHUSJP8V0JQDD1B5TEUIE6X7OJ5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chris%2F10796%2F8_IRWX2EV5EA56HSLAF58ZLKZWRKO7U5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chris%2F10796%2F9_XHYN96IK58AJFKNTSY98ZNZHPRQ6ZR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chris:10796",
                "plots": "https://api.plotly.com/v2/plots/chris:10796",
                "parent": "https://api.plotly.com/v2/folders/chris:10744"
            },
            "owner": "chris",
            "parent": 10744,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "US Treasury Yield Curve",
            "views": 38967,
            "web_url": "https://plotly.com/~chris/10796/us-treasury-yield-curve/",
            "world_readable": true,
            "date_modified": "2015-07-08T18:35:59.313Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~chris/10796/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~chris",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1426360105.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "i was raised by robots",
                "nickname": "chriddyplz",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-03-25 19:31:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chris",
                "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": "2015-11-17T02:15:47.904455Z",
            "parented": true,
            "embed_url": "https://plotly.com/~ElPolloFrio/3347.embed",
            "fid": "ElPolloFrio:3347",
            "filename": "Texas_compare_May_Nov",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3347%2F9_2ZXYLQYUO6852001E9L4OL91DVDYL2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3347%2F2_PRPWJEJVSGZTBHWLZUL6BZ6ZJHVALK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3347%2F8_JCJA8BD7AAV7IX204U2ZZEMIP4MCPT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ElPolloFrio%2F3347%2F9_2ZXYLQYUO6852001E9L4OL91DVDYL2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ElPolloFrio:3347",
                "plots": "https://api.plotly.com/v2/plots/ElPolloFrio:3347",
                "parent": "https://api.plotly.com/v2/folders/home?user=ElPolloFrio"
            },
            "owner": "ElPolloFrio",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Texas Tornado Tracks, 1950 - 2014",
            "views": 109,
            "web_url": "https://plotly.com/~ElPolloFrio/3347/texas-tornado-tracks-1950-2014/",
            "world_readable": true,
            "date_modified": "2015-11-17T02:15:49.947Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~ElPolloFrio/3347/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~ElPolloFrio",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1446866825.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "Operational meteorologist.",
                "nickname": "",
                "website": "http://www.twitter.com/@ElPolloFrio",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-02-06 00:37:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ElPolloFrio",
                "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": "2014-11-10T11:39:37.329482Z",
            "parented": true,
            "embed_url": "https://plotly.com/~Grondo/43.embed",
            "fid": "Grondo:43",
            "filename": "FIT EuO 103 reflectivity (1.225)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Grondo/43/9_HGYH2FNK8PTTT6PND5Z6PHPIYWBH2V.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Grondo%2F43%2F2_QFU75LBLG7G0349EOHJJ6FCLHHH9DJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Grondo%2F43%2F8_XTMIGTOCMNHABNMRKWN2SRUXL17CDN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Grondo/43/9_HGYH2FNK8PTTT6PND5Z6PHPIYWBH2V.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Grondo:43",
                "plots": "https://api.plotly.com/v2/plots/Grondo:43",
                "parent": "https://api.plotly.com/v2/folders/home?user=Grondo"
            },
            "owner": "Grondo",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "$\\text{X-Ray Reflectivity from EuO (sample 103) (}\\chi^2=1.225\\text{)}$",
            "views": 1093,
            "web_url": "https://plotly.com/~Grondo/43/textx-ray-reflectivity-from-euo-sample-103-chi21225text/",
            "world_readable": true,
            "date_modified": "2015-06-29T10:16:11.171Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~Grondo/43/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~Grondo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1398333915.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-04 09:20:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Grondo",
                "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": "2014-05-12T17:57:15.000000Z",
            "parented": true,
            "embed_url": "https://plotly.com/~PythonAPI/332.embed",
            "fid": "PythonAPI:332",
            "filename": "parsed-bar",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PythonAPI%2F332%2F9_PKDJE9SOHPZ9DBBN34I6MKTCV1ZIU8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PythonAPI%2F332%2F2_9W8471FZ1JRMP0KP64LI5U4J531NXE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PythonAPI%2F332%2F8_TTWCGI9J37T7JG4G5M71WBA9PS08J7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PythonAPI%2F332%2F9_PKDJE9SOHPZ9DBBN34I6MKTCV1ZIU8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PythonAPI:332",
                "plots": "https://api.plotly.com/v2/plots/PythonAPI:332",
                "parent": "https://api.plotly.com/v2/folders/home?user=PythonAPI"
            },
            "owner": "PythonAPI",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<b>Parental agreement:</b> \"Some young people and adults in the area make you afraid to let your children play outdoors\"",
            "views": 1111,
            "web_url": "https://plotly.com/~PythonAPI/332/parental-agreement-some-young-people-and-adults-in-the-area-make-you-afraid-to-l/",
            "world_readable": true,
            "date_modified": "2015-06-26T02:45:02.768Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~PythonAPI/332/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~PythonAPI",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-04-15 19:38:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PythonAPI",
                "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": "2016-05-05T01:55:50.001863Z",
            "parented": true,
            "embed_url": "https://plotly.com/~joshuaColin/105.embed",
            "fid": "joshuaColin:105",
            "filename": "Sensibilidad_reD_inter",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/joshuaColin/105/9_X48L79IM4H0E4HBRN7N0PLATII88QA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/joshuaColin%2F105%2F2_5QALW014B5Q88EYEFU0SO6WS7ZISG2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/joshuaColin%2F105%2F8_EZ8PLQ28WH7AO7067IAV68TVUAF6WV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/joshuaColin/105/9_X48L79IM4H0E4HBRN7N0PLATII88QA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/joshuaColin:105",
                "plots": "https://api.plotly.com/v2/plots/joshuaColin:105",
                "parent": "https://api.plotly.com/v2/folders/joshuaColin:48"
            },
            "owner": "joshuaColin",
            "parent": 48,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "$p_{Df},\\ t_Dp'_{Df}$ vs $\\left(t_D/r_D^2\\right)$",
            "views": 41,
            "web_url": "https://plotly.com/~joshuaColin/105/p-df-t-dp-df-vs-leftt-dr-d2right/",
            "world_readable": true,
            "date_modified": "2016-10-13T03:21:56.518Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~joshuaColin/105/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://plotly.com/~joshuaColin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2016-04-06 06:24:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "joshuaColin",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}