Rapports

Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Get your API key.
Liste

API endpoint:

GET
https://www.rapport-seo-gratuit.fr/api/v1/reports

Request example:

curl --location --request GET 'https://www.rapport-seo-gratuit.fr/api/v1/reports' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Paramêtre
Type
Description
search
optionel string
La requête de recherche.
search_by
optionel string
Rechercher par. Possible values are: url pour URL. Defaults to: url.
project
optionel string
Le nom du projet.
result
optionel string
The report result. Possible values are: good pour Bon, decent pour Moyen, bad pour Mauvais.
sort_by
optionel string
Trier par. Possible values are: id pour Date de création, generated_at pour Date de génération, url pour URL, result pour Résultat. Defaults to: id.
sort
optionel string
Trier. Possible values are: desc pour Descendant, asc pour Ascendant. Defaults to: desc.
per_page
optionel int
Resultats par page. Possible values are: 10, 25, 50, 100. Defaults to: 10.
Montrer

API endpoint:

GET
https://www.rapport-seo-gratuit.fr/api/v1/reports/{id}

Request example:

curl --location --request GET 'https://www.rapport-seo-gratuit.fr/api/v1/reports/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Stocker

API endpoint:

POST
https://www.rapport-seo-gratuit.fr/api/v1/reports

Request example:

curl --location --request POST 'https://www.rapport-seo-gratuit.fr/api/v1/reports' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Paramêtre
Type
Description
url
requis string
The webpage's URL.
privacy
optionel integer
Report page privacy. Possible values are: 0 pour Public, 1 pour Privé, 2 pour Mot de passe. Defaults to: 1.
password
optionel string
The password for the report page. Only works with privacy set to 2.
Mettre à jour

API endpoint:

PUT PATCH
https://www.rapport-seo-gratuit.fr/api/v1/reports/{id}

Request example:

curl --location --request PUT 'https://www.rapport-seo-gratuit.fr/api/v1/reports/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Paramêtre
Type
Description
privacy
optionel integer
Report page privacy. Possible values are: 0 pour Public, 1 pour Privé, 2 pour Mot de passe.
password
optionel string
The password for the report page. Only works with privacy set to 2.
results
optionel integer
Update the report results. Possible values are: 0 pour Non, 1 pour Oui. Defaults to: 0.
Supprimer

API endpoint:

DELETE
https://www.rapport-seo-gratuit.fr/api/v1/reports/{id}

Request example:

curl --location --request DELETE 'https://www.rapport-seo-gratuit.fr/api/v1/reports/{id}' \
--header 'Authorization: Bearer {api_key}'