I am communicating with a JSON API by sending requests using URL'sin the browser. The Endpoint returns information about football matches. It has a parameter named league_id which shows me information about a specific league. Example:
https://football.domain/api/?action=league_id=1
However i want to get results for more then one league in one request
I have tried :
https://football.domain/api/?action=league_id=1&league_id=2
However the api only shows me the results for one of the the leage_id parameters (League_id=2)
is their a correct format i need to use for specifying multiple values for one parameter?