Sportmonks · Capability

Sportmonks Cricket API — Livescores

Sportmonks Cricket API — Livescores. 2 operations. Lead operation: List Cricket Livescores.

Sportmonks Cricket API — Livescores is a Naftiko capability published by Sportmonks, one of 6 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method rooted at /v1/cricket.

The capability includes 2 read-only operations. Lead operation: List Cricket Livescores. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Sportmonks, Cricket, and Livescores.

Run with Naftiko SportmonksCricketLivescores

What You Can Do

GET
Listcricketlivescores — List Cricket Livescores
/v1/cricket/livescores
GET
Getcricketfixture — Get Cricket Fixture By ID
/v1/cricket/fixtures/{id}

MCP Tools

list-cricket-livescores

List Cricket Livescores

read-only idempotent
get-cricket-fixture

Get Cricket Fixture By ID

read-only idempotent

Capability Spec

cricket-livescores.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sportmonks Cricket API — Livescores
  description: 'Sportmonks Cricket API — Livescores. 2 operations. Lead operation: List Cricket Livescores.'
  tags:
    - Sportmonks
    - Cricket
    - Livescores
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      SPORTMONKS_API_TOKEN: SPORTMONKS_API_TOKEN
capability:
  consumes:
    - type: http
      namespace: cricket-livescores
      baseUri: https://cricket.sportmonks.com/api/v2.0
      description: Sportmonks Cricket Livescores business capability.
      resources:
        - name: cricket-livescores
          path: /livescores
          operations:
            - name: listCricketLivescores
              method: GET
              description: List Cricket Livescores
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: include
                  in: query
                  type: string
                  required: false
        - name: cricket-fixture
          path: /fixtures/{id}
          operations:
            - name: getCricketFixture
              method: GET
              description: Get Cricket Fixture By ID
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: id
                  in: path
                  type: integer
                  required: true
      authentication:
        type: apikey
        key: api_token
        value: '{{env.SPORTMONKS_API_TOKEN}}'
        placement: query
  exposes:
    - type: rest
      namespace: cricket-livescores-rest
      port: 8080
      description: REST adapter for Sportmonks Cricket Livescores.
      resources:
        - path: /v1/cricket/livescores
          name: cricket-livescores
          description: REST surface for cricket livescores.
          operations:
            - method: GET
              name: listCricketLivescores
              description: List Cricket Livescores
              call: cricket-livescores.listCricketLivescores
              with:
                include: rest.include
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/cricket/fixtures/{id}
          name: cricket-fixture
          description: REST surface for cricket fixture by id.
          operations:
            - method: GET
              name: getCricketFixture
              description: Get Cricket Fixture By ID
              call: cricket-livescores.getCricketFixture
              with:
                id: rest.id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: cricket-livescores-mcp
      port: 9090
      transport: http
      description: MCP adapter for Sportmonks Cricket Livescores.
      tools:
        - name: list-cricket-livescores
          description: List Cricket Livescores
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: cricket-livescores.listCricketLivescores
          with:
            include: tools.include
          outputParameters:
            - type: object
              mapping: $.
        - name: get-cricket-fixture
          description: Get Cricket Fixture By ID
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: cricket-livescores.getCricketFixture
          with:
            id: tools.id
          outputParameters:
            - type: object
              mapping: $.