Berichte

Notizen
Expert level
Der API-Schlüssel sollte als Bearer-Token im Authorization-Header der Anfrage gesendet werden. Erhalten Sie Ihren API Schlüssel.
Liste

API endpoint:

GET
https://rank.core-tracker.com/api/v1/reports

Beispiel einer Anfrage:

curl --location --request GET 'https://rank.core-tracker.com/api/v1/reports' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Typ
Beschreibung
search
optional string
Die Suchanfrage.
search_by
optional string
Suche nach. Mögliche Werte sind: url für URL. Standard zu: url.
project
optional string
Projektname.
result
optional string
The report result. Mögliche Werte sind: good für Gut, decent für Ok, bad für Schlecht.
sort_by
optional string
Sortieren nach. Mögliche Werte sind: id für Erstellt am, generated_at für Datum generiert, url für URL, result für Ergebnis. Standard zu: id.
sort
optional string
Sortieren. Mögliche Werte sind: desc für Absteigend, asc für Aufsteigend. Standard zu: desc.
per_page
optional int
Elemente pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standard zu: 10.
Zeige

API endpoint:

GET
https://rank.core-tracker.com/api/v1/reports/{id}

Beispiel einer Anfrage:

curl --location --request GET 'https://rank.core-tracker.com/api/v1/reports/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Shop

API endpoint:

POST
https://rank.core-tracker.com/api/v1/reports

Beispiel einer Anfrage:

curl --location --request POST 'https://rank.core-tracker.com/api/v1/reports' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Parameter
Typ
Beschreibung
url
benötigt string
The webpage's URL.
privacy
optional integer
Report page privacy. Mögliche Werte sind: 0 für Öffentlich, 1 für Privat, 2 für Passwort. Standard zu: 1.
password
optional string
The password for the report page. Only works with privacy set to 2.
Aktualsieren

API endpoint:

PUT PATCH
https://rank.core-tracker.com/api/v1/reports/{id}

Beispiel einer Anfrage:

curl --location --request PUT 'https://rank.core-tracker.com/api/v1/reports/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Typ
Beschreibung
privacy
optional integer
Report page privacy. Mögliche Werte sind: 0 für Öffentlich, 1 für Privat, 2 für Passwort.
password
optional string
The password for the report page. Only works with privacy set to 2.
results
optional integer
Update the report results. Mögliche Werte sind: 0 für Nein, 1 für Ja. Standard zu: 0.
Löschen

API endpoint:

DELETE
https://rank.core-tracker.com/api/v1/reports/{id}

Beispiel einer Anfrage:

curl --location --request DELETE 'https://rank.core-tracker.com/api/v1/reports/{id}' \
--header 'Authorization: Bearer {api_key}'