API-Endpunkt:
https://digistats.de/api/v1/websites
Beispiel für die Anfragen:
curl --location --request GET 'https://digistats.de/api/v1/websites' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
url
für URL. Standardwert: url
.sort_by
id
für Erstellungsdatum, url
für URL. Standardwert: id
.sort
desc
für Absteigend sortieren, asc
für Aufsteigend sortieren. Standardwert: desc
.per_page
10
, 25
, 50
, 100
. Standardwert: 10
.API-Endpunkt:
https://digistats.de/api/v1/websites/{id}
Beispiel für die Anfragen:
curl --location --request GET 'https://digistats.de/api/v1/websites/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
API-Endpunkt:
https://digistats.de/api/v1/websites
Beispiel für die Anfragen:
curl --location --request POST 'https://digistats.de/api/v1/websites' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'url={url}'
url
privacy
0
für Öffentlich, 1
für Privat, 2
für Passwort. Standardwert: 1
.password
privacy
festgelegt auf den Wert 2
.email
0
für Deaktiviert, 1
für Aktiviert. Standardwert: 0
.exclude_bots
0
für Deaktiviert, 1
für Aktiviert. Standardwert: 1
.exclude_params
exclude_ips
API-Endpunkt:
https://digistats.de/api/v1/websites/{id}
Beispiel für die Anfragen:
curl --location --request PUT 'https://digistats.de/api/v1/websites/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
privacy
0
für Öffentlich, 1
für Privat, 2
für Passwort.password
privacy
festgelegt auf den Wert 2
.email
0
für Deaktiviert, 1
für Aktiviert.exclude_bots
0
für Deaktiviert, 1
für Aktiviert.exclude_params
exclude_ips
API-Endpunkt:
https://digistats.de/api/v1/websites/{id}
Beispiel für die Anfragen:
curl --location --request DELETE 'https://digistats.de/api/v1/websites/{id}' \ --header 'Authorization: Bearer {api_key}'