CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 12 Oct 2025 17:56:46 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090124000219
location: https://web.archive.org/web/20090124000219/https://developer.getsatisfaction.com/docs/Topic_Lists
server-timing: captures_list;dur=0.781722, exclusion.robots;dur=0.027370, exclusion.robots.policy;dur=0.012070, esindex;dur=0.014216, cdx.remote;dur=170.653474, LoadShardBlock;dur=1696.246419, PetaboxLoader3.resolve;dur=810.437646, PetaboxLoader3.datanode;dur=781.515539
x-app-server: wwwb-app211
x-ts: 302
x-tr: 2001
server-timing: TR;dur=0,Tw;dur=67,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app211; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 12 Oct 2025 17:56:49 GMT
content-type: text/html; charset=utf-8
x-archive-orig-connection: close
x-archive-orig-p3p: policyref="/w3c/p3p.xml",CP="CAO COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA"
x-archive-orig-p3p: CP="CAO COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA"
x-archive-orig-x-powered-by: PHP/5.2.6
x-archive-orig-expires: Thu, 19 Nov 1981 08:52:00 GMT
x-archive-orig-cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
x-archive-orig-pragma: no-cache
x-archive-orig-content-length: 30683
x-archive-orig-etag: "dd7df97c"
x-archive-orig-date: Sat, 24 Jan 2009 00:02:19 GMT
x-archive-orig-server: lighttpd/1.4.20
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 24 Jan 2009 00:02:19 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 24 Jan 2009 00:02:19 GMT", ; rel="memento"; datetime="Sat, 24 Jan 2009 00:02:19 GMT", ; rel="next memento"; datetime="Wed, 11 Mar 2009 00:30:55 GMT", ; rel="last memento"; datetime="Wed, 11 Mar 2009 00:30:55 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_7_20090123233004_crawl102-c/52_7_20090124000055_crawl101.arc.gz
server-timing: captures_list;dur=15.438598, exclusion.robots;dur=0.033058, exclusion.robots.policy;dur=0.012863, esindex;dur=0.013728, cdx.remote;dur=94.265364, LoadShardBlock;dur=1126.946758, PetaboxLoader3.datanode;dur=885.846376, PetaboxLoader3.resolve;dur=646.513332, load_resource;dur=460.281640
x-app-server: wwwb-app211
x-ts: 200
x-tr: 1825
server-timing: TR;dur=0,Tw;dur=333,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Topic Lists
GetSatisfaction
Topic Lists
- Previous: Topic
- Up: Get Satisfaction Documentation
- Next: Resource Brain Dump
Different methods to access topic lists
As with other resources in satisfaction, there are many ways to slice, dice, filter, sort, and page topic data. In general, the API uses different resources to segment the data, such as /companies/satisfaction/topics
which represents all of the topics posted to getsatisfaction. Additionally, you can pass any number of query parameters to additionally filter or sort a given list of topics.
Available topic list resources
- /topics
- All of the topics in satisfaction
- /flagged/topics
- Every topic with atleast 1 abuse or spam flag, sorted by most flagged topics first
- /companies/XXXXX/topics
- All of the topics posted to a company
- Example call that represents all of the topics in iwantsandy:
https://api.getsatisfaction.com/companies/iwantsandy/topics
- /people/XXXXX/topics
- All of the topics posted by a person
- Example call that represents all of the topics that I have created:
https://api.getsatisfaction.com/people/scott/topics
- /people/XXXXX/followed/topics
- All of the topics followed by a person
- Example call that represents all of the topics that I am currently following:
https://api.getsatisfaction.com/people/scott/followed/topics/topics
- /products/XXXXX/topics
- All of the topics that are about a product
- Example call that represents all of the topics are about an apple iBook:
https://api.getsatisfaction.com/products/apple_ibook/topics
- /tags/XXXXX/topics
- All of the topics tagged with a given tag
- Example call that represents all of the topics tagged with 'bug':
https://api.getsatisfaction.com/tags/bug/topics
Available query parameters for topic lists
- limit
- used to specify the number of items that will appear within a single page of results for the feed. 30 is the max
- page
- Scroll the page X of the topic list. Pair it with limit.
- Example call to show items 30-45 of the topics in the twitter community:
https://api.getsatisfaction.com/companies/twitter/topics?limit=15&page=3
- query
- q
- full text search for topics using query. please note that this disabled other options besides page and limit
- Example call searching for "My twitter stream is missing updates":
https://api.getsatisfaction.com/topics?q=My+twitter+stream+is+missing+updates
- sort
- Sorts the list of topics returned. Go figure. Available options include:
- recently_created
- Sorts by the topics most recently created first
- recently_active
- Sorts by the topics most recently posted to or marked by someone who also has the problem/question/idea
- first.
- most_flagged
- Topics with the most spam or abuse flags are first
- most_me_toos
- Topics with the most people who also have the problem/question/idea first
- unanswered
- Only show topics with no replies
- Example call to show the most popular topics first in the twitter community:
https://api.getsatisfaction.com/companies/twitter/topics?sort=most_me_toos
- style
- Filter topics by style: options are question, idea, problem, and talk,
- Example call to show only questions:
https://api.getsatisfaction.com/topics?style=question
Sample atom response for a topic feed
- <feed xmlns="https://www.w3.org/2005/Atom" xmlns:sfn="https://api.getsatisfaction.com/schema/0.1" xmlns:opensearch="https://a9.com/-/spec/opensearch/1.1/" xmlns:thr="https://purl.org/syndication/thread/1.0">
- <id>https://localhost:3000/companies/twitter/topics?page=1</id>
- <title>Topics in Twitter</title>
- <updated>1969-12-31T18:00:00Z</updated>
- <link rel="self" href="https://localhost:3000/topics?page=1" type="application/atom+xml">
- <link rel="first" href="https://localhost:3000/topics?page=1" type="application/atom+xml">
- <link rel="next" href="https://localhost:3000/topics?page=2" type="application/atom+xml">
- <link rel="last" href="https://localhost:3000/topics?page=58" type="application/atom+xml">
- <opensearch:totalresults>858</opensearch:totalresults>
- <sfn:question_count>349</sfn:question_count>
- <sfn:idea_count>75</sfn:idea_count>
- <sfn:problem_count>417</sfn:problem_count>
- <sfn:talk_count>17</sfn:talk_count>
- <sfn:unanswered_count>196</sfn:unanswered_count>
- <entry>
- <id>https://localhost:3000/topics/40981</id>
- <link rel="topic" href="https://localhost:3000/topics/40981" type="application/atom+xml">
- <link rel="topic_at_sfn" href="https://localhost:3000/twitter/topics/can_twitter_update_my_myspace_status_bar" type="text/html">
- <link rel="company" href="https://localhost:3000/companies/55" type="text/html">
- <link rel="replies" href="https://localhost:3000/topics/40981/replies" type="application/atom+xml">
- <sfn:id>40981</sfn:id>
- <title type="html">Can Twitter update my Myspace status bar?</title>
- <updated>2008-03-03T22:44:25Z</updated>
- <published>2007-11-15T05:52:49Z</published>
- <author>
- <name>crazygurlbritt</name>
- <uri>https://localhost:3000/people/40081</uri>
- </author>
- <content type="html">
- If I add a gadget to my Myspace will Twitter update my myspace status just as if I were doing it on myspace without Twitter? I want to be able to post on Twitter and then my myspace friends will be able to see my update when they log in. I want it to show up where all my myspace status updates are. I guess you can do this on facebook or is the facebook app kind of like a gadget? I hope this isnt confusing. I want something it's just hard to explain. My Twitter dream is to be able to call Jott It! to update Twitter and then Twitter updates my Myspace and Facebook status so that I don't have to log in at all. I wonder if this is possible?
- </content>
- <sfn:topic_style>question</sfn:topic_style>
- <sfn:reply_count>2</sfn:reply_count>
- <sfn:follower_count>12</sfn:follower_count>
- <sfn:flag_count>0</sfn:flag_count>
- <sfn:tags></sfn:tags>
- </entry>
- <entry>...</entry>
- <entry>...</entry>
- <entry>...</entry>
- </feed>
https://localhost:3000/companies/twitter/topics?page=1 1969-12-31T18:00:00Z 858 349 75 417 17 196 https://localhost:3000/topics/40981 40981 2008-03-03T22:44:25Z 2007-11-15T05:52:49Z crazygurlbritt https://localhost:3000/people/40081 If I add a gadget to my Myspace will Twitter update my myspace status just as if I were doing it on myspace without Twitter? I want to be able to post on Twitter and then my myspace friends will be able to see my update when they log in. I want it to show up where all my myspace status updates are. I guess you can do this on facebook or is the facebook app kind of like a gadget? I hope this isnt confusing. I want something it's just hard to explain. My Twitter dream is to be able to call Jott It! to update Twitter and then Twitter updates my Myspace and Facebook status so that I don't have to log in at all. I wonder if this is possible? question 2 12 0 ... ... ...
version 28 as of 4 months ago by Scott Fleckenstein
- Previous: Topic
- Up: Get Satisfaction Documentation
- Next: Resource Brain Dump
Docs Navigation
© Copyright 2008 Get Satisfaction. All rights reserved.

Draft
Comments