How can I list competition names for specific sports? Is there any sample PHP code available?
How can I list competition names for specific sports?
Collapse
X
-
I suggest using the `listEvents` method of the Betfair API. This method allows you to filter events based on specific criteria, including the sport (`eventTypeIds`). You'll need to know the `eventTypeIds` for the sports you're interested in. These IDs can be found in the Betfair API documentation. Once you have the list of events, each event object will contain a field called `competition` or `competition.name`. This field holds the competition name for that specific event.


Comment