1. Introduction

Driblab API 1.0 is an HTTP REST API for Driblab that allows users to access aggregated metrics of a large number of players, teams and leagues. This API offers access to a great variety of resources in JSON format.

Back to index


2. Quickstart

A simple request to get all countries of Driblab's API would look like:

curl -X GET <https://apidriblab.com/countries> -H "Authorization: Bearer {API_TOKEN}"

Another request, this time with query parameters, would be like this:

curl -X GET <https://apidriblab.com/player/1> -H "Authorization: Bearer {API_TOKEN}"

We can use different programming languages to access the API (Python in this case)