Plausible Analytics API
Plausible Analytics offers a RESTful API for accessing website analytics data. It's lightweight, privacy-friendly, and open-source, making it an excellent choice for developers seeking a simple and transparent analytics solution.
2
Endpoints
25
Views
Jul 20, 2025
Last Checked
NaN
Rate Limit
API Endpoints
Retrieves aggregated analytics data for a site
Full URL
http://localhost:8000/api/v1/stats/aggregateCode Examples
curl -X GET 'http://localhost:8000/api/v1/stats/aggregate' \
-H 'Authorization: Bearer YOUR_API_KEY'Parameters
{
"period": "30d",
"metrics": "pageviews,visitors",
"site_id": "example.com"
}Example Response
{
"visitors": {
"value": 15432,
"change": 8
},
"pageviews": {
"value": 25432,
"change": 12
},
"bounce_rate": 42.3
}Version
v1
Rate Limit
10 requests/minute
Tags
analyticsprivacy
Related APIs
Discover similar APIs that might interest you