Skip to main content
Topics created by a given user. Respects the target user’s privacy settings. REST equivalent: GET /open/v1/users/{handle}/topics

Parameters

NameTypeRequiredDefaultNotes
handlestringWithout the @
typeprediction | pollprediction
cursor / limit— / 20

Returns

The standard topic list (same item shape as list_topics) with one extra flag:
{
  "data": [
    {
      "id": "9cef7a1a-235c-4aac-9715-cd3732ee75b5",
      "type": "prediction",
      "title": "Will the Nasdaq close up or down tomorrow?",
      "status": "open",
      "options": [
        { "id": "4d995c85-e5c6-4048-989d-e177442db219", "name": "Yes", "probability": "0.7995", "is_winner": false },
        { "id": "d502b13a-64f6-4951-8029-b84d59019ce5", "name": "No", "probability": "0.2005", "is_winner": false }
      ],
      "total_volume": "112551.8486",
      "traders_count": 104,
      "url": "https://seesaw.fun/topic/9cef7a1a-235c-4aac-9715-cd3732ee75b5"
    }
  ],
  "next_cursor": "bzoy",
  "has_more": true,
  "hidden": false
}
When the user hides their created list, data is empty and hidden is true — an empty list with hidden: false really is empty. Tell the two apart before concluding “this user created nothing”.

Example prompts

  • “What markets has @abai created?”
  • “Show me the polls created by the top creator on the leaderboard.”
get_user · list_topics