BetGenius Booking V1 API

The BookingV1 API from BetGenius — 3 operation(s) for bookingv1.

Operations 3

POST /api/booking/Book Book a fixture #
POST /api/booking/UnBook Un-book a fixture #
GET /api/booking/Fixtures Request a list of upcoming fixtures #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/betgenius-bookingv1-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

betgenius-bookingv1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: V1
  title: An API for booking fixtures Booking V1 API
servers:
- url: https://dataservices.betgenius.com/BookingSystem
tags:
- name: BookingV1
paths:
  /api/booking/Book:
    post:
      tags:
      - BookingV1
      summary: Book a fixture
      operationId: BookingV1_Book
      parameters:
      - name: fixtureId
        in: query
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
  /api/booking/UnBook:
    post:
      tags:
      - BookingV1
      summary: Un-book a fixture
      operationId: BookingV1_UnBook
      parameters:
      - name: fixtureId
        in: query
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
  /api/booking/Fixtures:
    get:
      tags:
      - BookingV1
      summary: Request a list of upcoming fixtures
      operationId: BookingV1_Fixtures
      parameters:
      - name: from
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: until
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: sportId
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fixture'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fixture'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fixture'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fixture'
components:
  schemas:
    Feed:
      type: object
      properties:
        Name:
          type: string
        Type:
          type: string
        IsLicensed:
          type: boolean
    ExternalId:
      type: object
      properties:
        Source:
          type: string
        Id:
          type: string
    Fixture:
      type: object
      properties:
        CompetitionId:
          format: int32
          type: integer
        CompetitionName:
          type: string
        CustomerFixtureId:
          type: string
        Date:
          format: date-time
          type: string
        FixtureId:
          format: int32
          type: integer
        IsBooked:
          type: boolean
        Name:
          type: string
        SportId:
          format: int32
          type: integer
        AvailableFeeds:
          type: array
          items:
            $ref: '#/components/schemas/Feed'
        ExternalIds:
          type: array
          items:
            $ref: '#/components/schemas/ExternalId'
  securitySchemes:
    basic:
      type: http
      scheme: basic
      description: Basic HTTP Authentication