site yet to be completed

Transferler

GET https://anon.cat/api/transfers/
curl --request GET \
--url 'https://anon.cat/api/transfers/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler Detaylar Açıklama
page İsteğe bağlı Tamsayı Sonuçları istediğiniz sayfa numarası. Varsayılan olarak 1.
results_per_page İsteğe bağlı Tamsayı Sayfa başına kaç sonuç istiyorsunuz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan: 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 09:37:42" }, ], "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 09:37:42" } }
POST https://anon.cat/transfer/create_api
Parametreler Detaylar Açıklama
uploaded_files Gerekli Dizi Tamsayı Bu transfer için eklenecek tüm yüklenen dosyaların UUID'lerini içeren dizi.
type İsteğe bağlı Dize İzin verilen değerler: link , email
email_to İsteğe bağlı Dize Mevcut olduğunda: type = email
name İsteğe bağlı Dize -
description İsteğe bağlı Dize -
url İsteğe bağlı Dize -
domain_id İsteğe bağlı Tamsayı -
project_id İsteğe bağlı Tamsayı -
pixels_ids İsteğe bağlı Dizi Tamsayı -
download_notification_handlers_ids İsteğe bağlı Dizi Tamsayı -
expiration_datetime İsteğe bağlı Dize Y-m-d H:i:s
downloads_limit İsteğe bağlı Tamsayı -
password İsteğe bağlı Dize -
file_encryption_is_enabled İsteğe bağlı Boolean -
file_preview_is_enabled İsteğe bağlı Boolean -
is_removed_branding İsteğe bağlı Boolean -
custom_css İsteğe bağlı Dize -
custom_js İsteğe bağlı Dize -
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}
Parametreler Detaylar Açıklama
name İsteğe bağlı Dize -
description İsteğe bağlı Dize -
url İsteğe bağlı Dize -
domain_id İsteğe bağlı Tamsayı -
project_id İsteğe bağlı Tamsayı -
pixels_ids İsteğe bağlı Dizi Tamsayı -
download_notification_handlers_ids İsteğe bağlı Dizi Tamsayı -
expiration_datetime İsteğe bağlı Dize Y-m-d H:i:s
downloads_limit İsteğe bağlı Tamsayı -
file_preview_is_enabled İsteğe bağlı Boolean -
is_removed_branding İsteğe bağlı Boolean -
custom_css İsteğe bağlı Dize -
custom_js İsteğe bağlı Dize -
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}' \