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
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": "2014-06-07T17:13:41.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~RhettAllain/115.embed",
            "fid": "RhettAllain:115",
            "filename": "Mass of Pennies",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F115%2F9_JSP1F0Y2YHOS1B4R7FIRRWR5I1DUAO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F115%2F2_AAQYQHCF3OKGB1DSW75T2CD1PMUZK9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F115%2F8_DHW2FHQ8G6A1R2C8MEQJ6MAR3MXGMC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/RhettAllain%2F115%2F9_JSP1F0Y2YHOS1B4R7FIRRWR5I1DUAO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/RhettAllain:115",
                "plots": "https://api.plotly.com/v2/plots/RhettAllain:115",
                "parent": "https://api.plotly.com/v2/folders/home?user=RhettAllain"
            },
            "owner": "RhettAllain",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Average Penny Mass as a Function of Year",
            "views": 994,
            "web_url": "https://chart-studio.plotly.com/~RhettAllain/115/average-penny-mass-as-a-function-of-year/",
            "world_readable": true,
            "date_modified": "2015-07-10T06:45:18.752Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~RhettAllain/115/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~RhettAllain",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406305592.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "Physics faculty and Wired Science Blogger.",
                "nickname": "Rhett Allain",
                "website": "http://www.wired.com/wiredscience/dotphysics",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-12-15 03:15:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "RhettAllain",
                "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-09-02T03:06:18.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dreamshot/587.embed",
            "fid": "Dreamshot:587",
            "filename": "Netflix: Rebuffering.Slow Loading Calls (20% Sample)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F587%2F9_SRWY7Y2PAP4ITOLPRVKY0OD87OGAO8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F587%2F2_5OS53LUNET03UY1EOOS0FK1T548AYZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F587%2F8_W2E1084W4A3DPMXNA4KSXS5H3YNDCM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dreamshot%2F587%2F9_SRWY7Y2PAP4ITOLPRVKY0OD87OGAO8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dreamshot:587",
                "plots": "https://api.plotly.com/v2/plots/Dreamshot:587",
                "parent": "https://api.plotly.com/v2/folders/Dreamshot:98"
            },
            "owner": "Dreamshot",
            "parent": 98,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Slow Comcast Speeds Were Costing Netflix Customers<br><br>Calls to Netflix: Rebuffering/Slow Loading (20% Sample)",
            "views": 659,
            "web_url": "https://chart-studio.plotly.com/~Dreamshot/587/slow-comcast-speeds-were-costing-netflix-customers-calls-to-netflix-rebufferings/",
            "world_readable": true,
            "date_modified": "2015-07-09T08:31:37.226Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dreamshot/587/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Dreamshot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1396308157.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "Meteorologist with a flair for data analysis.",
                "nickname": "Ben",
                "website": "https://twitter.com/BenNollWeather",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-09-04 01:51:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dreamshot",
                "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-07-31T03:00:38.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~FiveThirtyEight/25.embed",
            "fid": "FiveThirtyEight:25",
            "filename": "The Rise of the Older Mom",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight/25/9_3UDNVHPXKBAODVQXB3NF5NS1Y07IP2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight%2F25%2F2_6GKE746DS6509JK4AN8KN1SUBM6KEM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight%2F25%2F8_HRB85NACVQBPV3Y8TP7MLMXT6VYTOC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/FiveThirtyEight/25/9_3UDNVHPXKBAODVQXB3NF5NS1Y07IP2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/FiveThirtyEight:25",
                "plots": "https://api.plotly.com/v2/plots/FiveThirtyEight:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=FiveThirtyEight"
            },
            "owner": "FiveThirtyEight",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "<b>The Rise of the Older Mom</b><br><i>The number of live births per 1,000 women ages 35 to 39<br>has risen more than fivefold since 1970.</i>",
            "views": 3988,
            "web_url": "https://chart-studio.plotly.com/~FiveThirtyEight/25/the-rise-of-the-older-mom-the-number-of-live-births-per-1000-women-ages-35-to-39/",
            "world_readable": true,
            "date_modified": "2015-07-08T07:18:50.976Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~FiveThirtyEight/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~FiveThirtyEight",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "Interactive Plotly versions of graphs originally created by FiveThirtyEight",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-05-30 08:12:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "FiveThirtyEight",
                "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-08-26T08:44:47.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mrlyule/91.embed",
            "fid": "mrlyule:91",
            "filename": "Presbycusis Plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mrlyule%2F91%2F9_USUU16IVVXOGQYJV5PG7N8Q4IS9VO3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mrlyule%2F91%2F2_S9EYPKEA22CJ3IKPACX1TYXBVXLQ95.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mrlyule%2F91%2F8_RZL51BJ0B27XQN93JCK9Q8TEX9599F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mrlyule%2F91%2F9_USUU16IVVXOGQYJV5PG7N8Q4IS9VO3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mrlyule:91",
                "plots": "https://api.plotly.com/v2/plots/mrlyule:91",
                "parent": "https://api.plotly.com/v2/folders/mrlyule:75"
            },
            "owner": "mrlyule",
            "parent": 75,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Hearing Loss Due To Presbycusis Over Time",
            "views": 1359,
            "web_url": "https://chart-studio.plotly.com/~mrlyule/91/hearing-loss-due-to-presbycusis-over-time/",
            "world_readable": true,
            "date_modified": "2015-07-09T16:18:59.658Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mrlyule/91/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mrlyule",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "Acoustics Researcher, Solent Acoustics. ",
                "nickname": "Lawrence Yule",
                "website": "http://solentacoustics.wordpress.com/",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-12-30 13:25:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mrlyule",
                "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-07-21T16:37:22.927235Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~neda/3455.embed",
            "fid": "neda:3455",
            "filename": "box-plot-outliers",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/neda/3455/9_NYS98AKJKTHWMVJRQ72ABBB0VIT3FK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/neda%2F3455%2F2_SKV6D42F9SKXXYD69MH0T2KA1LHL6Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/neda%2F3455%2F8_6Q7T8FCUSENTJ8J3LJE7JBVMR1ZBQL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/neda/3455/9_NYS98AKJKTHWMVJRQ72ABBB0VIT3FK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/neda:3455",
                "plots": "https://api.plotly.com/v2/plots/neda:3455",
                "parent": "https://api.plotly.com/v2/folders/home?user=neda"
            },
            "owner": "neda",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "All points, Only</br>Whiskers, Suspected</br>Outliers, Whiskers</br>& Outliers",
            "views": 15014,
            "web_url": "https://chart-studio.plotly.com/~neda/3455/all-points-only-whiskers-suspected-outliers-whiskers-outliers/",
            "world_readable": true,
            "date_modified": "2015-07-21T16:37:22.973Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~neda/3455/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~neda",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-03-23 21:53:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "neda",
                "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-04-14T21:05:14.751253Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chelsea_lyn/840.embed",
            "fid": "chelsea_lyn:840",
            "filename": "PolarCoor",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F840%2F9_90WVTL591TJLIRK2JH7TPLV43QSXB4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F840%2F2_P9DZUMHBO9J2UA1XSPH1BKENJ9NMWT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F840%2F8_5LQS0PYRB9VHHN38KBA029JZN07SOL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F840%2F9_90WVTL591TJLIRK2JH7TPLV43QSXB4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chelsea_lyn:840",
                "plots": "https://api.plotly.com/v2/plots/chelsea_lyn:840",
                "parent": "https://api.plotly.com/v2/folders/home?user=chelsea_lyn"
            },
            "owner": "chelsea_lyn",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "",
            "views": 104286,
            "web_url": "https://chart-studio.plotly.com/~chelsea_lyn/840/",
            "world_readable": true,
            "date_modified": "2015-12-19T02:25:55.725Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chelsea_lyn/840/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chelsea_lyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/S3XINYAKT6PTQGIEIXCFVI8KED3Y4T.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "Chelsea",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-03-11 14:59:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chelsea_lyn",
                "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-08-26T04:04:32.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JStevens/2.embed",
            "fid": "JStevens:2",
            "filename": "North American Public Transportation",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JStevens/2/9_D7W85ELA10RJG6JWG4QV5KT323ID0W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JStevens%2F2%2F2_63V7GWABH2660WMJT7R6IEGB6HYWBD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JStevens%2F2%2F8_2OMOHSDC9JN5VHHLQBL2H0GD5X9AC5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JStevens/2/9_D7W85ELA10RJG6JWG4QV5KT323ID0W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JStevens:2",
                "plots": "https://api.plotly.com/v2/plots/JStevens:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=JStevens"
            },
            "owner": "JStevens",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Public Transport Use in North America",
            "views": 1762,
            "web_url": "https://chart-studio.plotly.com/~JStevens/2/public-transport-use-in-north-america/",
            "world_readable": true,
            "date_modified": "2015-06-24T14:35:19.775Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JStevens/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JStevens",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.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-05-20 04:36:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JStevens",
                "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-01-16T17:56:50.383470Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~laoj/10.embed",
            "fid": "laoj:10",
            "filename": "fig2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/laoj%2F10%2F9_ONQDY6AFXQJF610ZLK1RB9YE38TZVB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/laoj%2F10%2F2_0893DDVSB38A4XMQQ6342XE69WR3TK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/laoj%2F10%2F8_UCS2NP65PBH5IZRZMQ7WCOX0L72DCL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/laoj%2F10%2F9_ONQDY6AFXQJF610ZLK1RB9YE38TZVB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/laoj:10",
                "plots": "https://api.plotly.com/v2/plots/laoj:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=laoj"
            },
            "owner": "laoj",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Novel Face vs Familiarized Face",
            "views": 295,
            "web_url": "https://chart-studio.plotly.com/~laoj/10/novel-face-vs-familiarized-face/",
            "world_readable": true,
            "date_modified": "2016-01-16T17:56:50.922Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~laoj/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~laoj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "Junpeng Lao",
                "website": "http://junpenglao.xyz",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-12-31 19:15:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "laoj",
                "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-19T17:50:36.000000Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~abtran/34.embed",
            "fid": "abtran:34",
            "filename": "Overheight truck crashes on Storrow and Memorial by Year (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/abtran%2F34%2F9_H63212DZHDO5Q1ZDBIAC41C3IRBOV5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/abtran%2F34%2F2_CP7YD77RAWQBWYKXQVMHMO1LYQVUPH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/abtran%2F34%2F8_3I5JG5KKIADDML2EL1OVVCGJNJ0OZN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/abtran%2F34%2F9_H63212DZHDO5Q1ZDBIAC41C3IRBOV5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/abtran:34",
                "plots": "https://api.plotly.com/v2/plots/abtran:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=abtran"
            },
            "owner": "abtran",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "Overheight truck crashes on Storrow and Memorial by year",
            "views": 959,
            "web_url": "https://chart-studio.plotly.com/~abtran/34/overheight-truck-crashes-on-storrow-and-memorial-by-year/",
            "world_readable": true,
            "date_modified": "2015-07-08T05:19:02.389Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~abtran/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~abtran",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406665427.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "Data Editor at TrendCT/The Connecticut Mirror",
                "nickname": "Andrew Tran",
                "website": "http://www.trendct.org",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2014-03-28 14:47:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "abtran",
                "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-04-02T21:23:33.076004Z",
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chelsea_lyn/516.embed",
            "fid": "chelsea_lyn:516",
            "filename": "scatterddd",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F516%2F9_0QL5RKXYVANLBOHANG1NVFDM8Y16RG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F516%2F2_3K4IXM9V8QVW18UWCMMHWCBYDSQKAK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F516%2F8_5ZCFNKSQR6EB56SW06DPBRYO60ODTI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chelsea_lyn%2F516%2F9_0QL5RKXYVANLBOHANG1NVFDM8Y16RG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chelsea_lyn:516",
                "plots": "https://api.plotly.com/v2/plots/chelsea_lyn:516",
                "parent": "https://api.plotly.com/v2/folders/home?user=chelsea_lyn"
            },
            "owner": "chelsea_lyn",
            "parent": -1,
            "preview": "",
            "referencers": null,
            "references": null,
            "title": "",
            "views": 15617,
            "web_url": "https://chart-studio.plotly.com/~chelsea_lyn/516/",
            "world_readable": true,
            "date_modified": "2015-12-19T02:25:46.761Z",
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chelsea_lyn/516/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "caption": "",
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chelsea_lyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/S3XINYAKT6PTQGIEIXCFVI8KED3Y4T.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "Chelsea",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-03-11 14:59:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chelsea_lyn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}