Get Quicktip Card by code

Returns Quicktip card by specified code

GET https://api.betstack.io/bc/quicktips/{code}

Response example:

{
  "code": "B57AFB",
  "operator": "acme",
  "title": "Weekend Derby",
  "enabled": true,
  "created": "2024-01-11T15:08:56.758000",
  "expires": "2024-02-04T15:00:00",
  "events": [
    {
      "id": 217347,
      "starts": "2024-02-04T16:30:00",
      "category": {
        "league_id": 3094,
        "league_slug": "football/england/premier-league",
        "league_name": "Premier League",
        "country_id": 234,
        "country_slug": "england",
        "country_name": "England"
      },
      "home_team": {
        "slug": "arsenal",
        "name": "Arsenal",
        "id": 104600
      },
      "away_team": {
        "slug": "liverpool",
        "name": "Liverpool",
        "id": 104604
      },
      "bet": {
        "id": 1,
        "bet_code": "1",
        "bet_name": "Home",
        "market_code": "MRFT",
        "market_name": "Match Result Full Time",
        "line_code": null,
        "line_name": null,
        "odds": 2.15,
        "updated": "2024-01-26T00:35:17"
      }      
    },
    {
      "id": 208646,
      "starts": "2024-02-21T20:00:00",
      "category": {
        "league_id": 3104,
        "league_slug": "football/europe/uefa-champions-league",
        "league_name": "UEFA Champions League",
        "country_id": 235,
        "country_slug": "europe",
        "country_name": "Europe"
      },
      "home_team": {
        "slug": "porto",
        "name": "Porto",
        "id": 105034
      },
      "away_team": {
        "slug": "arsenal",
        "name": "Arsenal",
        "id": 104600
      },
      "bet": {
        "id": 14,
        "bet_code": "O",
        "bet_name": "Over",
        "market_code": "OUFT",
        "market_name": "Over/Under Full Time",
        "line_code": "25",
        "line_name": "2.5",
        "odds": 1.87,
        "updated": "2024-01-27T08:29:03"
      }
    }
  ]
}

If the card with specified code was not found error response is returned with status code 400

{
  "code": 102,
  "message": "Betcard `B57AFBa` was not found"
}

If the card is expired an error response is returned with status code 400

{
  "code": 103,
  "message": "Betcard `C3E370` expired"
}

Last updated