site yet to be completed

Transferts

GET https://anon.cat/api/transfers/
curl --request GET \
--url 'https://anon.cat/api/transfers/' \
--header 'Authorization: Bearer {api_key}' \
Paramètres Détails Description
page Optionnel Entier Le numéro de page à partir duquel vous souhaitez obtenir des résultats. Par défaut 1.
results_per_page Optionnel Entier Combien de résultats souhaitez-vous par page ? Les valeurs autorisées sont : 10 , 25 , 50 , 100 , 250 , 500 , 1000. Par défaut : 25.
{ "data": [ { "id": 1, "user_id": 1, "project_id": 0, "uploader_id": "f528764d624db129b32c21fbca0cb8d6", "pixels_ids": [], "files_ids": [ 1,2,3 ], "name": "Example", "description": "Example", "type": "link", "email_to": null, "url": "example", "settings": { "password": null, "file_encryption_is_enabled": false, "file_preview_is_enabled": true, "is_removed_branding": false, "custom_css": "tester", "custom_js": "" }, "notifications": { "download": [] }, "total_files": 1, "total_size": 999999, "pageviews": 1, "downloads": 1, "downloads_limit": 0, "expiration_datetime": null, "last_datetime": null, "datetime": "2025-05-19 06:28:53" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://anon.cat/api/transfers?&page=1", "last": "https://anon.cat/api/transfers?&page=1", "next": null, "prev": null, "self": "https://anon.cat/api/transfers?&page=1" } }
GET https://anon.cat/api/transfers/{transfer_id}
curl --request GET \
--url 'https://anon.cat/api/transfers/{transfer_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "user_id": 1, "project_id": 0, "uploader_id": "f528764d624db129b32c21fbca0cb8d6", "pixels_ids": [], "files_ids": [ 1,2,3 ], "name": "Example", "description": "Example", "type": "link", "email_to": null, "url": "example", "settings": { "password": null, "file_encryption_is_enabled": false, "file_preview_is_enabled": true, "is_removed_branding": false, "custom_css": "tester", "custom_js": "" }, "notifications": { "download": [] }, "total_files": 1, "total_size": 999999, "pageviews": 1, "downloads": 1, "downloads_limit": 0, "expiration_datetime": null, "last_datetime": null, "datetime": "2025-05-19 06:28:53" } }
POST https://anon.cat/transfer/create_api
Paramètres Détails Description
uploaded_files Requis Tableau Entier Tableau contenant les UUID de tous les fichiers téléchargés à joindre à ce transfert.
type Optionnel Chaîne Valeurs autorisées : link , email
email_to Optionnel Chaîne Disponible lorsque : type = email
name Optionnel Chaîne -
description Optionnel Chaîne -
url Optionnel Chaîne -
domain_id Optionnel Entier -
project_id Optionnel Entier -
pixels_ids Optionnel Tableau Entier -
download_notification_handlers_ids Optionnel Tableau Entier -
expiration_datetime Optionnel Chaîne Y-m-d H:i:s
downloads_limit Optionnel Entier -
password Optionnel Chaîne -
file_encryption_is_enabled Optionnel Booléen -
file_preview_is_enabled Optionnel Booléen -
is_removed_branding Optionnel Booléen -
custom_css Optionnel Chaîne -
custom_js Optionnel Chaîne -
curl --request POST \
--url 'https://anon.cat/transfer/create_api' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'uploaded_files[]=de09be56-639f-4213-863b-5ea1aa065970' \
--form 'name=Example name' \
--form 'description=Example description' \
{ "data": { "id": 1, "download_url": "https://anon.cat/transfer-redirect/1", "view_url": "https://anon.cat/transfer/1", } }
POST https://anon.cat/api/transfers/{transfer_id}
Paramètres Détails Description
name Optionnel Chaîne -
description Optionnel Chaîne -
url Optionnel Chaîne -
domain_id Optionnel Entier -
project_id Optionnel Entier -
pixels_ids Optionnel Tableau Entier -
download_notification_handlers_ids Optionnel Tableau Entier -
expiration_datetime Optionnel Chaîne Y-m-d H:i:s
downloads_limit Optionnel Entier -
file_preview_is_enabled Optionnel Booléen -
is_removed_branding Optionnel Booléen -
custom_css Optionnel Chaîne -
custom_js Optionnel Chaîne -
curl --request POST \
--url 'https://anon.cat/api/transfers/{transfer_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=transfer.com' \
{ "data": { "id": 1 } }
DELETE https://anon.cat/api/transfers/{transfer_id}
curl --request DELETE \
--url 'https://anon.cat/api/transfers/{transfer_id}' \
--header 'Authorization: Bearer {api_key}' \