swagger: '2.0' info: description: 'This is Genius Sports Services Fixture API.

Changelog resume

Authentication

You need to provide two tokens in every API call. The access_token for Auth0 client AND your API key

What is new in Fixtures API v2.

Fixture Tree Structure

Examples

I am interested in round 2 fixtures for the English Premier League


I am interested in Arsenal and their players

' version: 2.0.280 title: Fixtures-v2 Competitions Matches API contact: email: sbonboarding@geniussports.com license: name: Apache 2.0 url: http://www.apache.org/licenses/LICENSE-2.0.html host: fixtures.api.geniussports.com basePath: /v2 schemes: - https tags: - name: Matches description: Match data and broadcasts paths: /v1/matches: get: tags: - Matches summary: List matches operationId: listMatches parameters: - $ref: '#/components/parameters/Limit' - $ref: '#/components/parameters/Offset' - $ref: '#/components/parameters/Fields' - name: competitionId in: query schema: type: string - name: from in: query schema: type: string format: date - name: to in: query schema: type: string format: date responses: '200': description: Matches envelope content: application/json: schema: $ref: '#/components/schemas/ResponseEnvelope' /v1/matches/{matchId}: parameters: - name: matchId in: path required: true schema: type: string get: tags: - Matches summary: Get a match operationId: getMatch responses: '200': description: Match envelope content: application/json: schema: $ref: '#/components/schemas/ResponseEnvelope' components: parameters: Offset: name: offset in: query description: Skip the first N records schema: type: integer default: 0 Fields: name: fields in: query description: Comma-separated list of fields to return schema: type: string Limit: name: limit in: query description: Record limit (default 10, maximum 500) schema: type: integer default: 10 maximum: 500 schemas: ResponseEnvelope: type: object properties: meta: $ref: '#/components/schemas/ResponseMeta' data: oneOf: - type: object - type: array items: type: object ResponseMeta: type: object properties: version: type: string code: type: integer status: type: string enum: - success - failure request: type: string time: type: integer count: type: integer limit: type: integer securityDefinitions: Auth0: type: apiKey name: Authorization in: header x-amazon-apigateway-authtype: oauth2 api_key: type: apiKey name: x-api-key in: header x-amazon-apigateway-security-policy: TLS_1_0