Skip to main content
curl --request GET \
  --url https://api.longshot.xyz/v1/contests/550e8400-e29b-41d4-a716-446655440000/popular-entry
{
  "total_entries": 42,
  "markets": [
    {
      "market_id": 61619,
      "yes_count": 27,
      "no_count": 15
    }
  ]
}
curl --request GET \
  --url https://api.longshot.xyz/v1/contests/550e8400-e29b-41d4-a716-446655440000/popular-entry
{
  "total_entries": 42,
  "markets": [
    {
      "market_id": 61619,
      "yes_count": 27,
      "no_count": 15
    }
  ]
}

Endpoint

GET https://api.longshot.xyz/v1/contests/{id}/popular-entry
Returns per-market pick counts across submitted entries. This community-insights endpoint is available for lineups and outcast contests; survivor and streak contests return 404 CONTEST_NOT_FOUND.

Path Parameters

id
uuid
required
Contest ID returned by GET /v1/contests.

Query Parameters

No query parameters.

Response Fields

total_entries
int32
Total number of entries counted.
markets
array
Per-market pick distribution.
markets[].market_id
int64
Contest market ID.
markets[].yes_count
int32
Number of entries that picked the YES side for this market.
markets[].no_count
int32
Number of entries that picked the NO side for this market.