API-Endpunkt:
https://auswertung.ch/api/v1/websites
Beispiel anfordern:
curl --location --request GET 'https://auswertung.ch/api/v1/websites' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
domain
.sort_by
id
.sort
desc
.per_page
10
, 25
, 50
, 100
. Standardwert ist: 25
.API-Endpunkt:
https://auswertung.ch/api/v1/websites/{id}
Beispiel anfordern:
curl --location --request GET 'https://auswertung.ch/api/v1/websites/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
API-Endpunkt:
https://auswertung.ch/api/v1/websites
Beispiel anfordern:
curl --location --request POST 'https://auswertung.ch/api/v1/websites' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'domain={domain}'
domain
privacy
0
.password
privacy
auf 2
gesetzt ist.email
0
.exclude_bots
1
.exclude_params
exclude_ips
API-Endpunkt:
https://auswertung.ch/api/v1/websites/{id}
Beispiel anfordern:
curl --location --request PUT 'https://auswertung.ch/api/v1/websites/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
privacy
password
privacy
auf 2
gesetzt ist.email
exclude_bots
exclude_params
exclude_ips
API-Endpunkt:
https://auswertung.ch/api/v1/websites/{id}
Beispiel anfordern:
curl --location --request DELETE 'https://auswertung.ch/api/v1/websites/{id}' \ --header 'Authorization: Bearer {api_key}'