This app is really great - I’m using it to track a few international teams I’m interested in. When I ask it to show me the Wales women’s team, which is shown as “(W) Wales” in the app, it gives me no data. Is it the app or is it the data source that the app pulls from? It shows the upcoming matches for the Welsh men’s squad just fine.
let me check on it. the ESPN API only pulls so far in advance - but the API I am using for Soccer Single is usually pretty good.
finishing up something right at this minute, but I’ll at least give you an update before I leave at 5 ET today.
@GainsMcDonald86 - there’s no nextevent data returned in the API from ESPN for Wales’ Women team.
this is the URL we pull from
https://site.api.espn.com/apis/site/v2/sports/soccer/all/teams/12634
and this is the result (i have removed some stuff that isn’t pertinent)
{
"team": {
"id": "12634",
"uid": "s:600~t:12634",
"slug": "wal.w",
"location": "Wales",
"name": "Wales",
"abbreviation": "WAL",
"displayName": "Wales",
"shortDisplayName": "Wales",
"color": "E70000",
"alternateColor": "ffffff",
"isActive": true,
"logos": [
{
"href": "https://a.espncdn.com/i/teamlogos/countries/500/wal.png",
"width": 500,
"height": 500,
"alt": "",
"rel": [
"full",
"default"
],
"lastUpdated": "2018-06-05T12:07Z"
},
{
"href": "https://a.espncdn.com/i/teamlogos/countries/500-dark/wal.png",
"width": 500,
"height": 500,
"alt": "",
"rel": [
"full",
"dark"
],
"lastUpdated": "2018-06-05T12:06Z"
}
],
"record": {},
"nextEvent": []
}
}
you can see nextEvent is empty - thus what you are seeing.
and looking at their fixtures page on ESPN’s site Wales 2024 Schedule - ESPN - there’s no upcoming games according to the page (that does NOT mean it’s accurate - I find issues with the ESPN site for non top-level teams all the time. Just means no one at ESPN sees any upcoming games for them at this time.
Thanks for checking it out. Very kind of you!