Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The client is authenticated using a GET request including query string parameters: client_id and secret_key. These parameters are assigned to you by our sales department. On confirmation of the client_id/secret_key combination, the special oAuth token is then returned. Maximum period of time the token is valid is 24 hours from the time it was generated. This token should be sent with all subsequent requests. 

Example token request: 
https://api.softnetsportstatscore.com/v2/oauth.xml?client_id=<YOUR_CLIENT_ID>&secret_key=<YOUR_SECRET_KEY>

...

For access to the feed it is necessary to send a URL request containing the following segments:
Base URL: https://api.softnetsportstatscore.com/<api_version>/<resource_name>?token=<YOUR_TOKEN>

...

In the event you would like additional filtering of the data, you can request a combination of the resource query parameters. For example the following URL returns all events for basketball (sport_id=1): https://api.softnetsportstatscore.com/<api_version>/events?token=<YOUR_TOKEN>&sport_id=1. The possible parameters for all resources are described in the detailed specifications.

...