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 People 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: People description: Players, officials, staff paths: /v1/persons: get: tags: - People summary: List persons (players, officials, staff) operationId: listPersons parameters: - $ref: '#/components/parameters/Limit' - $ref: '#/components/parameters/Offset' - $ref: '#/components/parameters/Fields' responses: '200': description: Persons envelope content: application/json: schema: $ref: '#/components/schemas/ResponseEnvelope' /v1/persons/{personId}: parameters: - name: personId in: path required: true schema: type: string get: tags: - People summary: Get a person operationId: getPerson responses: '200': description: Person 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