Point de terminaison de l'API:
https://pixy.link/api/v1/domains
Exemple de requête:
curl --location --request GET 'https://pixy.link/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
sort
desc
pour Décroissant, asc
pour Croissant. Par défaut à: desc
.per_page
10
à 100
. Par défaut à: 10
.Point de terminaison de l'API:
https://pixy.link/api/v1/domains/{id}
Exemple de requête:
curl --location --request GET 'https://pixy.link/api/v1/domains/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
Point de terminaison de l'API:
https://pixy.link/api/v1/domains
Exemple de requête:
curl --location --request POST 'https://pixy.link/api/v1/domains' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'url={url}'
name
index_page
not_found_page
Point de terminaison de l'API:
https://pixy.link/api/v1/domains/{id}
Exemple de requête:
curl --location --request PUT 'https://pixy.link/api/v1/domains/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'url={url}'
index_page
not_found_page
Point de terminaison de l'API:
https://pixy.link/domains/{id}/destroy
Exemple de requête:
curl --location --request DELETE 'https://pixy.link/domains/{id}/destroy' \ --header 'Authorization: Bearer {api_key}'