• Bugün, 04:46:44
    #1
    Selamlar,
    Wordpress temama süperlig güncel puan durumunu koymak istiyorum api-football.com üzerinden denedim ama 2026/27 sezonu için güncel puan durumunu vermiyor bunu nasıl yapabilirim? ücretsiz şekilde?
  • Bugün, 05:11:38
    #2
    Chatgpt.com, ücretsiz api sorun hocam yoksa da user agentli bir bot ile hedef site belirleyip çekin. Ai söyleyin gerisini halleder, iyi forumlar.
  • Bugün, 07:07:03
    #3
    Selamlar,

    https://footballdata.io/ sitesi üzerinden ücretsiz aylık 2000 istek ile isteğinizi gerçekleştirebilirsiniz.

    Örnek PowerShell komudu:
    $url = "https://footballdata.io/api/v1/leagues"
    $headers = @{ "Authorization" = "Bearer YOUR_API_KEY" }
    $leagueId = "45" # Güncel UEFA Champions League ID'si
    $standingsUrl = "https://footballdata.io/api/v1/leagues/$leagueId/standings"
    $standings = Invoke-RestMethod -Uri $standingsUrl -Headers $headers -Method Get
    $standings | ConvertTo-Json -Depth 10
    Çıktı:
    paste | e7kWXKSgsJ