Given a user's findmeon.com id ( 32 hex chars ) , will list 1-15 of the last global newsfeed items visible to that id
https://api.findmeon.com/v1/findmeon/get_newsfeed?findmeon=%(findmeon)s&api_key=%(api_key)shttps://api.findmeon.com/v1/findmeon/%(findmeon)s/get_newsfeed?api_key=%(api_key)sapi_key [string] - can be obtained from https://FindMeOn.com/my/ findmeon [string] - 32 char hex id for identityqty [int] - number of newsfeed items to return, 1-15 is valid, default is 5 js [bool] - return data as a javascript linenewsfeed - an array containing dictionary items of the following formatmeta_timestamp - timestamp of entrymeta_originator_url - originating profile url of entrymeta_fmoid - originating findmeon hexid of entrydata - content of entryhttps://api.findmeon.com/v1/findmeon/findmeon=%(findmeon)s/api_key=%(api_key)s/qty=%(qty)s/get_newsfeed.js
<script src="https://api.findmeon.com/v1/findmeon/findmeon=AD96168A494C59A4FB5F7B6DC629022B/api_key=8614A2970DAFE9A7A873DD7F67C58B14/qty=z/get_newsfeed.js" type="text/javascript"></script>
The alternate path will return info such as this:
var fmo__newsfeed_%(findmeon_id)s = { json object };
As an example:
var fmo__newsfeed_AD96168A494C59A4FB5F7B6DC629022B = { "result":"success" , "newsfeed": [] };