curl --request POST \
--url https://api.example.com/websites/delete \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>"
}
'{
"success": true,
"error": "<string>"
}Soft-deletes a website (project) and stops tracking
curl --request POST \
--url https://api.example.com/websites/delete \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>"
}
'{
"success": true,
"error": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/databuddy-analytics/Databuddy/llms.txt
Use this file to discover all available pages before exploring further.
delete permission on the websitedelete permissiontrue if deletion succeededclientIdcurl -X POST https://api.databuddy.cc/websites/delete \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"id": "web_xyz789"
}'
{
"success": true
}
{
"error": "Website not found",
"code": "NOT_FOUND"
}