Using FQL : the affiliations field of the user table contains this information
Example call: https://graph.facebook.com/fql?q=select affiliations from user where uid= 4&access_token=<ACCESS TOKEN>
Answer example:
{ "data": [ { "affiliations": [ { "nid": 16777217, "name": "Harvard", "type": "college" }, { "nid": 50431648, "name": "Facebook", "type": "work" } ] } ] }
source share