curl --request POST \
--url https://api.example.com/websites/list \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "<string>",
"includeArchived": true
}
'{
"id": "<string>",
"organizationId": "<string>",
"domain": "<string>",
"name": "<string>",
"publicAccess": true,
"trackingStatus": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}Returns all websites (projects) for the given organization
curl --request POST \
--url https://api.example.com/websites/list \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "<string>",
"includeArchived": true
}
'{
"id": "<string>",
"organizationId": "<string>",
"domain": "<string>",
"name": "<string>",
"publicAccess": true,
"trackingStatus": "<string>",
"createdAt": "<string>",
"updatedAt": "<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.
x-api-key header or Authorization: Bearer headerfalseexample.com)active, inactive, or setup_requiredcurl -X POST https://api.databuddy.cc/websites/list \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"organizationId": "org_abc123"
}'
[
{
"id": "web_xyz789",
"organizationId": "org_abc123",
"domain": "example.com",
"name": "Example Website",
"publicAccess": false,
"trackingStatus": "active",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-03-01T14:22:00Z"
}
]