Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 647 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 647 Bytes

LoLPlayerScraper

Official API of the LCS

Introduction

We are a team of elite devs dedicated to bringing you an open-source LoL data API.

Endpoints

We currently offer three endpoints. All endpoints are CASE SENSITIVE!

  • /api/get_player/
  • /api/get_team/
  • /api/teams_by_region/ [DISABLED]

Examples

  pip install requests
import requests

# returns a dictionary with player attributes
requests.get('www.lolapi.de/api/get_player/Broken_Blade')

# returns a dictionary with team attributes
requests.get('www.lolapi.de/api/get_team/GGS')