rezarahiminia / free-api-worldcup2022

Grab your football API data for FIFA World Cup 2022 competition!
239 stars 35 forks source link

How would we know who advances to next stage? #123

Open juaning opened 1 year ago

juaning commented 1 year ago

It seems the match data is missing who advances to the next stage for knockout stage, my understanding is the score captures regular time score. What about extra time and penalties? And who advances to next stage?

Thanks for the great work!

klevisndoka commented 1 year ago

In Api call /api/v1/match you can find matches with different types.

There you can find matches for each stage. If you need who advanced groups just look for matches on "type" = "R16"

juaning commented 1 year ago

In Api call /api/v1/match you can find matches with different types.

  • group
  • R16
  • QR
  • semi
  • 3RD
  • FIN

There you can find matches for each stage. If you need who advanced groups just look for matches on "type" = "R16"

My question is, how do you know who won the match, and if it was in regular time, extra time or penalties? that info is not present in api/v1/match

So, here, how do you know how the match ended? { "_id": "638923be0eab2168b945af34", "away_score": 0, "away_scorers": [ "null" ], "away_team_id": "5", "finished": "FALSE", "group": "R16", "home_score": 0, "home_scorers": [ "null" ], "home_team_id": "3", "id": "51", "local_date": "12/4/2022 22:00", "matchday": "15", "persian_date": "1400-09-13 22:30", "stadium_id": "1", "time_elapsed": "notstarted", "type": "R16", "home_team_fa": "سنگال", "away_team_fa": "انگلستان", "home_team_en": "Senegal", "away_team_en": "England", "home_flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/125px-Flag_of_Senegal.svg.png", "away_flag": "https://upload.wikimedia.org/wikipedia/en/thumb/b/be/Flag_of_England.svg/125px-Flag_of_England.svg.png" }