Skip to content

Instantly share code, notes, and snippets.

@ciolt
Last active March 5, 2018 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ciolt/554e70ffd3cb5e7ea63f13f5ad921ec6 to your computer and use it in GitHub Desktop.
Save ciolt/554e70ffd3cb5e7ea63f13f5ad921ec6 to your computer and use it in GitHub Desktop.
MSN API

Spartan Mobile Landing: https://www.msn.com/spartan/mmx?locale=en-US

Spartan Desktop Landing: https://www.msn.com/spartan/dhpwinfre

OData Endpoint: https://cdn.query.prod.cms.msn.com/cms/api/amp/search? $top=30&$filter='$type'eq'article'and'_locale'eq'en-us'

Articles: https://cdn.query.prod.cms.msn.com/cms/api/amp/article/ <Article ID>

Feeds: https://cdn.query.prod.cms.msn.com/cms/api/amp/article/ <Article ID>

Example

This is the response returned by the OData MSN API Search endpoint when $top is set to 2.

[
  {
    "_feed": null,
    "_lastPublishedDateTime": "2014-06-17T03:04:11Z",
    "_type": "article",
    "_title": "Texas ACM Awards sell out in 18 minutes",
    "_provider": null,
    "_lastEditedDateTime": "2014-06-17T03:04:11Z",
    "_expirationDateTime": "2041-10-31T23:15:12Z",
    "_image": null,
    "_id": "AAqwdE",
    "_abstract": null,
    "_authors": [],
    "_score": 0
  },
  {
    "_feed": null,
    "_lastPublishedDateTime": "2014-06-17T03:08:45Z",
    "_type": "article",
    "_title": "Nas Cuts Homophobic 'Illmatic' Lyrics at Tribeca Film Festival",
    "_provider": null,
    "_lastEditedDateTime": "2014-06-17T03:08:45Z",
    "_expirationDateTime": "2041-10-31T23:17:18Z",
    "_image": null,
    "_id": "AAqwfE",
    "_abstract": null,
    "_authors": [],
    "_score": 0
  }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment