Point de terminaison de l'API:
https://goo.vc/api/v1/domains?fr
Exemple de demande:
curl --location --request GET 'https://goo.vc/api/v1/domains?fr' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
pour Nom. La valeur par défaut est : name
.sort_by
id
pour Date de création, name
pour Nom. La valeur par défaut est : id
.sort
desc
pour Descente, asc
pour Ascendante. La valeur par défaut est : desc
.per_page
10
, 25
, 50
, 100
. La valeur par défaut est : 10
.Point de terminaison de l'API:
https://goo.vc/api/v1/domains/{id}?fr
Exemple de demande:
curl --location --request GET 'https://goo.vc/api/v1/domains/{id}?fr' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
Point de terminaison de l'API:
https://goo.vc/api/v1/domains?fr
Exemple de demande:
curl --location --request POST 'https://goo.vc/api/v1/domains?fr' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'name={name}'
name
index_page
not_found_page
Point de terminaison de l'API:
https://goo.vc/api/v1/domains/{id}?fr
Exemple de demande:
curl --location --request PUT 'https://goo.vc/api/v1/domains/{id}?fr' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
index_page
not_found_page
Point de terminaison de l'API:
https://goo.vc/api/v1/domains/{id}?fr
Exemple de demande:
curl --location --request DELETE 'https://goo.vc/api/v1/domains/{id}?fr' \ --header 'Authorization: Bearer {api_key}'