Production API consistently returns 503 errors for /clubs/{club_id}/players?season_id={season}
Strangely, after running the request locally, the same request then works in prod for 1-2 mins.
Reproduction
-
Production fails
curl "https://transfermarkt-api.fly.dev/clubs/631/players?season_id=2022"
503: "Service Unavailable for url: https://www.transfermarkt.com/-/kader/verein/631/saison_id/2022/plus/1"
-
Local works fine
curl "http://localhost:8001/clubs/631/players?season_id=2022"
✅ 200
-
Production now magically works
curl "https://transfermarkt-api.fly.dev/clubs/631/players?season_id=2022"
✅ 200
-
Production fails after a couple of minutes again.
(I have my own version hosted on fly and it's getting lots of random 503's on different endpoints btw)
Production API consistently returns 503 errors for /clubs/{club_id}/players?season_id={season}
Strangely, after running the request locally, the same request then works in prod for 1-2 mins.
Reproduction
Production fails
curl "https://transfermarkt-api.fly.dev/clubs/631/players?season_id=2022"503: "Service Unavailable for url: https://www.transfermarkt.com/-/kader/verein/631/saison_id/2022/plus/1"Local works fine
curl "http://localhost:8001/clubs/631/players?season_id=2022"✅ 200
Production now magically works
curl "https://transfermarkt-api.fly.dev/clubs/631/players?season_id=2022"✅ 200
Production fails after a couple of minutes again.
(I have my own version hosted on fly and it's getting lots of random 503's on different endpoints btw)