Description:
Returns a list with a maximum of 10 websites that are analyzed under the given account.
Requires:
API key
Available in:
Version 1.0
Parameters:
apikey: The API key that is provided with your reseller account.
offset (optional): By using an offset you can navigate through your results. If you have 60 analyses under your account and don't use the offset the API will return the last 10 analyses:
http://www.lipperhey.com/api/1.0/?apikey=[your-api-key]&method=list
By providing an offset you can determine from what point the API should return the last 10 analyses:
http://www.lipperhey.com/api/1.0/?apikey=[your-api-key]&method=list&offset=20
option (optional): With the option parameter you can filter the result list to display everyting (option=all), only subscriptions (option=subscriptions) or the analyses that don't have a subscription yet (option=none-subscriptions).
http://www.lipperhey.com/api/1.0/?apikey=[your-api-key]&method=list&option=subscriptions
Response:
The API will respond with a list of the last 10 websites and results that were analyzed under your account. Every website contains an ID field which can be used to retrieve detailed results, order the report or download the report.
<!--Lipperhey API Response-->
<response queries="6" time="15 ms" calls-left="9985">
<error/>
<websites offset="0" results="1">
<website domain="lipperhey.com" timestamp="2009-07-07 10:54:21">
<id>1653860</id>
<url>http://www.lipperhey.com</url>
<expiration>1283011275</expiration>
<result>
<statuscodes>200</statuscodes>
<score>
<technical>6.3</technical>
<seo>65%</seo>
<popularity>8</popularity>
<overall>4.3</overall>
</score>
<pages>
<found>245</found>
<evaluated>100</evaluated>
<assessed>80</assessed>
</pages>
<links>
<incoming>50</incoming>
<outgoing>51</outgoing>
<directories>DMOZ, Yahoo, DIGG</directories>
</links>
</result>
</website>
<website>
...
</website>
<website>
...
</website>
</websites>
<users/>
</response>
If an error occured a description of the error wil be available in the error field.
Examples: