Skip to main content
GET
/
getAllMentionSeries
Get All Mention Series
curl --request GET \
  --url https://us-central1-mentionmarket-dddf0.cloudfunctions.net/getAllMentionSeries
{
  "series_ticker": "<string>",
  "series_title": "<string>",
  "error": "<string>",
  "message": "<string>"
}

Response

Returns an array of objects, each containing:
series_ticker
string
The ticker symbol for the series (e.g., “KXNFLMENTION”, “KXNBAMENTION”)
series_title
string
The title of the series

Example Request

curl "https://us-central1-mentionmarket-dddf0.cloudfunctions.net/getAllMentionSeries"

Example Response

[
  {
    "series_ticker": "KXNFLMENTION",
    "series_title": "NFL Mentions"
  },
  {
    "series_ticker": "KXNBAMENTION",
    "series_title": "NBA Mentions"
  },
  {
    "series_ticker": "KXNHLMENTION",
    "series_title": "NHL Mentions"
  }
]

Error Responses

error
string
Error message describing what went wrong
message
string
Additional error details
Example error response (500):
{
  "error": "Failed to fetch mention series",
  "message": "Kalshi API Error: 500 Internal Server Error"
}