API Documentation
The Tweefind APIs expose data with the principles of Representational State Transfer (REST).
Methods:search
returns Twitter search results ordered by user´s relevance powered by Tweerank©
URL
http://api.tweefind.com/search.php
Formats
XML, JSON
HTTP
GET, POST
Parameters
q - search query (must be urlencoded)
apikey - apikey to use Tweefind APIs (send an email to get one)
lang [optional] - the language of users, can be en (default) for english only tweets or all for all tweets
link [optional] - set to true to get only tweets containing links (default value is false)
mode [optional] - xml (default) or json
Examples
http://api.tweefind.com/search.php?q=iphone&apikey=[YOURAPIKEY]
http://api.tweefind.com/search.php?q=iphone&mode=json&apikey=[YOURAPIKEY]
http://api.tweefind.com/search.php?q=iphone&links=true&apikey=[YOURAPIKEY]
Response
<?xml version="1.0" encoding="UTF-8"?>
<results>
  <entry>
    <id>2630457957</id>
    <lang>en</lang>
    <content>Mobile app review: FT on iPhone http://bit.ly/dVp6o</content>
    <published>Tue, 14 Jul 2009 10:50:06 +0000</published>
    <source>&lt;a href=&quot;http://twitterfeed.com&quot;&gt;twitterfeed&lt;/a&gt;</source>
    <touser></touser>
    <rank>4</rank>
    <author>
      <id>134872</id>
      <screenname>econsultancy</screenname>
      <imageurl>http://s3.amazonaws.com/twitter_production/profile_images/231186936/econ-logo-rgb-large_normal.jpg</imageurl>
    </author>
  </entry>
  ... truncated ...
</results>