Twitter has a public API which returns JSON…
for example, a GET request to…
https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=mralexgray&count=1
…comes out looking a little messy, but run it through JSONLint validator and it comes out Valid.. aka AOK…
[
{
"id_str": "150739698292244480",
"entities": {
"hashtags": [],
"urls": [
{
"url": "http://t.co/sEXkB2zC",
"indices": [
76,
96
],
"expanded_url": "http://fb.me/XIaFd0yI",
"display_url": "fb.me/XIaFd0yI"
}
],
"user_mentions": []
},
"in_reply_to_status_id": null,
"contributors": null,
"place": null,
"truncated": false,
"geo": null,
"favorited": false,
"created_at": "Sun Dec 25 00:48:39 +0000 2011",
"user": {
"id_str": "8394862",
"contributors_enabled": false,
"lang": "en",
"protected": false,
"url": "http://mrgray.com/$",
"profile_use_background_image": true,
"name": "mralexgray",
"default_profile_image": false,
"friends_count": 306,
"profile_text_color": "D95B43",
"statuses_count": 63,
"profile_background_image_url": "http://a2.twimg.com/profile_background_images/88810365/x86b7f9c12df0fa38ce1a4f29b759706.png",
"utc_offset": -18000,
"description": "Fierceness Incarnate",
"is_translator": false,
"created_at": "Fri Aug 24 01:00:57 +0000 2007",
"profile_link_color": "C02942",
"following": null,
"profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/88810365/x86b7f9c12df0fa38ce1a4f29b759706.png",
"favourites_count": 4,
"follow_request_sent": null,
"geo_enabled": true,
"profile_background_color": "53777A",
"profile_background_tile": true,
"followers_count": 121,
"profile_image_url": "http://a2.twimg.com/profile_images/21449002/Yo.I.Ain_t.Barbie_normal.jpg",
"screen_name": "mralexgray",
"show_all_inline_media": true,
"profile_sidebar_fill_color": "ECD078",
"profile_image_url_https": "https://si0.twimg.com/profile_images/21449002/Yo.I.Ain_t.Barbie_normal.jpg",
"listed_count": 1,
"notifications": null,
"location": "NYC",
"id": 8394862,
"default_profile": false,
"verified": false,
"time_zone": "Quito",
"profile_sidebar_border_color": "542437"
},
"in_reply_to_user_id": null,
"retweet_count": 0,
"in_reply_to_screen_name": null,
"in_reply_to_status_id_str": null,
"possibly_sensitive": false,
"retweeted": false,
"source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>",
"in_reply_to_user_id_str": null,
"coordinates": null,
"id": 150739698292244480,
"text": "let me put my hands together…. my thumbs were broken in an acting accident. http://t.co/sEXkB2zC"
}
]