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 Standings 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: Standings description: Competition standings paths: /v1/standings: get: tags: - Standings summary: List standings operationId: listStandings parameters: - name: competitionId in: query required: true schema: type: string - $ref: '#/components/parameters/Fields' responses: '200': description: Standings envelope content: application/json: schema: $ref: '#/components/schemas/ResponseEnvelope' components: 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 parameters: Fields: name: fields in: query description: Comma-separated list of fields to return schema: type: string 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