Skip to main content
GET
/
api
/
search
Global search preview — top results across users, events, and matches
curl --request GET \
  --url https://core-api.adipredictstreet.com/api/search
{
  "query": "<string>",
  "walletMode": true,
  "users": [
    {
      "vaultAddress": "<string>",
      "username": "<string>"
    }
  ],
  "events": [
    {
      "id": "<string>",
      "slug": "<string>",
      "title": "<string>",
      "teamA": "<string>",
      "teamB": "<string>"
    }
  ],
  "matches": [
    {
      "id": "<string>",
      "slug": "<string>",
      "title": "<string>",
      "teamA": "<string>",
      "teamB": "<string>",
      "startTime": "2023-11-07T05:31:56Z"
    }
  ],
  "usersHasMore": true,
  "eventsHasMore": true,
  "matchesHasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.adipredictstreet.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

q
string
required

Search query, 1–64 characters.

Required string length: 1 - 64

Response

OK

query
string
required

Trimmed query string actually used.

walletMode
boolean
required

True when the query parsed as a 0x… wallet prefix. In that case events and matches are always empty.

users
object[]
required
events
object[]
required
matches
object[]
required
usersHasMore
boolean
required

True when there is at least one more row past the preview slice for this type — drives the "View more" footer in the dropdown without a follow-up round-trip.

eventsHasMore
boolean
required
matchesHasMore
boolean
required