Basic info about API:

To download / read data, please send the appropriate web inquiry (webservice address with the given parameters). Webservice address: https://api.powerbike.pl/
The API returns the data to which the query relates in two formats:

  • JSON
  • XML
The format of returned data should be included in the query as one of the parameters.

Podstawowe informacje o API:

W celu pobrania/odczytu danych należy wysłać odpowiednie zapytanie webowe (adres do webserwisu wraz z podanymi parametrami). Adres do web serwisu: https://api.powerbike.pl/
API zwraca dane których dotyczy zapytanie w dwóch formatach:

  • JSON
  • XML
Format zwracanych danych należy umieścić w zapytaniu jako jeden z parametrów.

Authorization:

The data can be read via the API only if the requesting party has been properly authorized, please contact your sales representative first in order to turn on the API access for you.
The current b2b username and password (Powerlink) are used for authorization. For authorization, the Authorization parameter should be placed in the header of the web query. The value of this parameter is a string a combination of the word Basic, and b2b login and password encoded with the base64 method. Authorization string value:
Basic (base64 encoded({login}:{password}))

Autoryzacja:

Odczyt danych przez API jest możliwy tylko pod warunkiem poprawnej autoryzacji strony wysyłającej zapytanie, skontaktuj się najpierw ze swoim przedstawicielem handlowym, aby włączyć dla Ciebie dostęp do interfejsu API.
Do autoryzacji wykorzystywany jest aktualny login i hasło użytkownika b2b (Powerlink). W celu autoryzacji należy w nagłówku zapytania webowego umieścić parameter Authorization. Wartość tego parametru to ciąg tekstowy będący połączeniem słowa Basic, oraz loginu i hasła do b2b zakodowanych metodą base64. Wartość ciągu autoryzacji:
Basic (zakodowane base64({login}:{hasło}))


Example implementation (JavaScript):

Przykładowa implementacja (JavaScript):


 const url = "https://api.powerbike.pl/json/product/producer/rebelhorn";
 const login = "username"; //powerlink username
 const password = "password"; //powerlink password
 const basic = "Basic " + btoa(login + ":" + password); //base64 - btoa function in javascript

 const params = {
  headers: {
   "content-type": "application/json; charset=UTF-8",
   Authorization: basic
  },
  method: "GET"
 };

 //basic api reading
 fetch(url, params)
  .then(res => res.json())
  .then(res => {
   console.log(res);
  })
  .catch(error => console.log(error));