NeCloud servislerine programatik erişim sağlayın.
// Authentication Example
curl -X POST "https://api.nezihefe.com/v1/auth/login" \
-d '{"username": "admin", "token": "YOUR_SECRET_KEY"}'
// List All Files
curl -X GET "https://api.nezihefe.com/v1/files/list" \
-H "Authorization: Bearer YOUR_TOKEN"
// Response Preview
{
"status": "success",
"data": {
"files": [
{"name": "belgeler.zip", "size": "1.2GB", "type": "archive"},
{"name": "profil.jpg", "size": "240KB", "type": "image"}
]
}
}