Berichte

Anmerkungen
Expert level
Der API-Schlüssel sollte als Bearer-Token im Authorization-Header der Anfrage gesendet werden. Holen Sie sich Ihren API-Schlüssel.
Aufführen

API-Endpunkt:

GET
https://rankify.ru/api/v1/reports

Beispiel anfordern:

curl --location --request GET 'https://rankify.ru/api/v1/reports' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Typ
Beschreibung
search
optional string
Die Suchanfrage.
search_by
optional string
Suchen nach. Mögliche Werte sind: :Wert für URL. Standardmäßig: url.
project
optional string
Der Projektname.
result
optional string
The report result. Mögliche Werte sind: :Wert für Gut, :Wert für Anständig, :Wert für Schlecht.
sort_by
optional string
Sortiere nach. Mögliche Werte sind: :Wert für Datum erstellt, :Wert für Datum der Erstellung, :Wert für URL, :Wert für Ergebnis. Standardmäßig: id.
sort
optional string
Sortieren. Mögliche Werte sind: :Wert für Absteigend, :Wert für Aufsteigend. Standardmäßig: desc.
per_page
optional int
Ergebnisse pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standardmäßig: 25.
Zeigen

API-Endpunkt:

GET
https://rankify.ru/api/v1/reports/{id}

Beispiel anfordern:

curl --location --request GET 'https://rankify.ru/api/v1/reports/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Speichern

API-Endpunkt:

POST
https://rankify.ru/api/v1/reports

Beispiel anfordern:

curl --location --request POST 'https://rankify.ru/api/v1/reports' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Parameter
Typ
Beschreibung
url
erforderlich string
The webpage's URL.
privacy
optional integer
Report page privacy. Mögliche Werte sind: :Wert für Öffentlich, :Wert für Privat, :Wert für Passwort. Standardmäßig: 1.
password
optional string
The password for the report page. Only works with privacy set to 2.
Aktualisieren

API-Endpunkt:

PUT PATCH
https://rankify.ru/api/v1/reports/{id}

Beispiel anfordern:

curl --location --request PUT 'https://rankify.ru/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: :Wert für Öffentlich, :Wert für Privat, :Wert 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: :Wert für NEIN, :Wert für Ja. Standardmäßig: 0.
Löschen

API-Endpunkt:

DELETE
https://rankify.ru/api/v1/reports/{id}

Beispiel anfordern:

curl --location --request DELETE 'https://rankify.ru/api/v1/reports/{id}' \
--header 'Authorization: Bearer {api_key}'