Skip to main content
GET
/
api
/
events
List events
curl --request GET \
  --url https://core-api.adipredictstreet.com/api/events
import requests

url = "https://core-api.adipredictstreet.com/api/events"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://core-api.adipredictstreet.com/api/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://core-api.adipredictstreet.com/api/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://core-api.adipredictstreet.com/api/events"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://core-api.adipredictstreet.com/api/events")
.asString();
require 'uri'
require 'net/http'

url = URI("https://core-api.adipredictstreet.com/api/events")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "events": [
    "<unknown>"
  ]
}

Query Parameters

stage
enum<string>
Available options:
group,
r32,
r16,
quarter_finals,
semi_finals,
third_place,
final
group
string

Group letter, e.g. "A"

Pattern: ^[A-Z0-9]{1,8}$
team
string

FIFA 3-letter country code; matches teamA OR teamB.

Pattern: ^[A-Z]{3}$
tag
string

Single tag slug, exact match (e.g. "premier-league").

from
string<date-time>

ISO-8601 lower bound on eventStartTime.

to
string<date-time>

ISO-8601 upper bound on eventStartTime.

sort
enum<string>

trending = 24h volume DESC; ending_soon = non-past closesAt ASC (hides already-closed); starting_soon = future kickoff ASC (hides already-started); live = kickoff passed AND a market is still OPEN, most-recently-started DESC. starting_soon / live use per-market kickoff as the authoritative time; the event-level eventStartTime is only a fallback when kickoff is NULL. Default (no sort): earliest public-market kickoff ASC, then title ASC, then event id ASC.

Available options:
trending,
ending_soon,
starting_soon,
live

Response

200 - application/json

OK

events
any[]
required