List User Contacts

Given a user's findmeon id ( 32 hex chars ) , will list viewable contacts for that id

Location
  • https://api.findmeon.com/v1/findmeon/get_contacts?findmeon=%(findmeon)s&api_key=%(api_key)s
Required Query Args
  • api_key [string] - can be obtained from https://FindMeOn.com/my/
  • findmeon [string] - 32 char hex id for identity
Optional Query Args
  • js [bool] - returns a javascript line
Returns
  • contacts - a dictionary object containing
    • id - FindMeOn.com hex_id
    • name - display name
    • resource - the actual resource
Alternate Path
An alternate path is provided for use as a 'dynamic js' page element
  • https://api.findmeon.com/v1/findmeon/findmeon=%(findmeon)s/api_key=%(api_key)s/get_contacts.js
Alternate Path - Example Usage
<script src="https://api.findmeon.com/v1/findmeon/findmeon=AD96168A494C59A4FB5F7B6DC629022B/api_key=8614A2970DAFE9A7A873DD7F67C58B14/get_contacts.js" type="text/javascript"></script>
Alternate Path - Example Result

The alternate path will return info such as this:

var fmo__contacts_%(findmeon)s = { json object };

As an example:

var fmo__contacts_AD96168A494C59A4FB5F7B6DC629022B= { "result":"success" , "findmeons":[] };



«Back To v1 Documentation