Team/Players Dictionary Added: (04.Jan.2022)

You need token(which expires in 5 min) which you get from step 1, and also add that token to your query explained in Generate Token
Then you can send GET request with required TOKEN parameter.
(Get teams) https://services.geniusfeeds.live/v2/dictionaries/teams

(Get team by id) https://services.geniusfeeds.live/v2/dictionaries/teams/id

When you register to our webhook service we will inform you if there is change in teams dictionary.

Optional Filters: (Parameters)
  • "s" by Sport Id of teams exp: https://services.geniusfeeds.live/v2/dictionaries/teams?s=1
  • "c" by Country Id of teams exp: https://services.geniusfeeds.live/v2/dictionaries/teams?c=14
  • "p" by Priorityof teams exp: https://services.geniusfeeds.live/v2/dictionaries/teams?s=0
  • "t" You can select data newer than your filter date: Format either yyyy-mm-ddThh:mm:ss(ex 2018-02-24T06:44:16) Or Unix Timestamp

Explanations

Parameter Description
t Updated or Inserted Time
i Teams/Players Id
n Teams/Players name
s Sport Id
c Country Id
tg TAG
__v Version of service

Response

[
    {									
	"t": "2018-02-24T06:44:16.000Z", //updated or inserted time
	"i": 88527,   //id of team/player
	"n": "Strasbourg Elsau",   //name of team
	"nl": "Strasbourg Elsau",   //long name of Teams/Players
	"s": 1,   //Sport Id of Teams/Players
	"c": 149,  //Country Id of Teams/Players
	"tg": "",  //Tag
	"__v": 1
    }
]

Postman Token Adding(Bearer+" "+YourToken) Example:(change Dictionary service in URL)

Postman Country Dictionary

Postman Example:(Check Optional Parametres)

Postman Teams/Playerss Dictionary Example