Skip to main content
GET
/
api
/
matches
/
{id}
Get match by id
curl --request GET \
  --url https://core-api.adipredictstreet.com/api/matches/{id}
import requests

url = "https://core-api.adipredictstreet.com/api/matches/{id}"

response = requests.get(url)

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

fetch('https://core-api.adipredictstreet.com/api/matches/{id}', 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/matches/{id}",
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/matches/{id}"

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/matches/{id}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://core-api.adipredictstreet.com/api/matches/{id}")

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
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "slug": "<string>",
  "title": "<string>",
  "participantA": "<string>",
  "participantB": "<string>",
  "tags": [
    {
      "slug": "<string>",
      "name": "<string>",
      "color": "<string>",
      "iconUrl": "<string>"
    }
  ],
  "startTime": "2023-11-07T05:31:56Z",
  "state": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "events": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "slug": "<string>",
      "title": "<string>",
      "group": "<string>",
      "teamA": "<string>",
      "teamB": "<string>",
      "tags": [
        {
          "slug": "<string>",
          "name": "<string>",
          "color": "<string>",
          "iconUrl": "<string>"
        }
      ],
      "eventStartTime": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "markets": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "eventId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "symbol": "<string>",
          "slug": "<string>",
          "title": "<string>",
          "groupItemTitle": "<string>",
          "conditionId": "<string>",
          "questionId": "<string>",
          "yesTokenId": "<string>",
          "noTokenId": "<string>",
          "currentReviewRound": 123,
          "outcomeCount": 123,
          "outcomeLabels": [
            "<string>"
          ],
          "initialFairValue": "<string>",
          "initialOutcomePrices": [
            "<string>"
          ],
          "feeTakerBps": 123,
          "opensAt": "2023-11-07T05:31:56Z",
          "closesAt": "2023-11-07T05:31:56Z",
          "kickoff": "2023-11-07T05:31:56Z",
          "resolutionWindowHours": 123,
          "pausedAt": "2023-11-07T05:31:56Z",
          "resolvedAt": "2023-11-07T05:31:56Z",
          "payoutNumerators": "<unknown>",
          "officialDataSource": "<string>",
          "sourceMatchId": "<string>",
          "resolutionCriteria": "<string>",
          "negRiskEligible": true,
          "isNewMarketType": true,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z",
          "outcomePrices": [
            "<string>"
          ]
        }
      ]
    }
  ]
}
{
"code": "<string>",
"message": "<string>",
"details": {}
}

Path Parameters

id
string<uuid>
required

Response

OK

admin.matches aggregate — a single fixture/card that groups several related events (e.g. 1X2, first-scorer, over-under) under one matchup.

id
string<uuid>
slug
string
title
string

Short matchup label (e.g. 'BRA vs ARG').

participantA
string | null
participantB
string | null
tags
object[]
stage
enum<string> | null
Available options:
group,
r32,
r16,
quarter_finals,
semi_finals,
third_place,
final
startTime
string<date-time> | null
state
string

Lifecycle state from admin.matches.state — typically READY for everything surfaced publicly.

createdAt
string<date-time>
updatedAt
string<date-time>
events
object[]