cURL
curl --request GET \
--url https://api.growi.io/api/public/v1/stats/creators_24h \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.growi.io/api/public/v1/stats/creators_24h"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.growi.io/api/public/v1/stats/creators_24h', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.growi.io/api/public/v1/stats/creators_24h",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.growi.io/api/public/v1/stats/creators_24h"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.growi.io/api/public/v1/stats/creators_24h")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.growi.io/api/public/v1/stats/creators_24h")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"creators_24h": [
{
"date": "2025-09-06",
"last_date": "2025-06-29",
"current_new": 16,
"last_new": 0,
"total_new": 27,
"last_total_new": 24,
"current_active": 0,
"last_active": 0,
"total_active": 1,
"last_total_active": 1
}
]
}
}{
"error": "<string>",
"message": "<string>"
}Stats API
Get Creators 24h
Retrieves daily creator metrics tracking both new creators (who joined your database) and active creators (who made posts) with comparison to previous period
GET
/
stats
/
creators_24h
cURL
curl --request GET \
--url https://api.growi.io/api/public/v1/stats/creators_24h \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.growi.io/api/public/v1/stats/creators_24h"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.growi.io/api/public/v1/stats/creators_24h', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.growi.io/api/public/v1/stats/creators_24h",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.growi.io/api/public/v1/stats/creators_24h"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.growi.io/api/public/v1/stats/creators_24h")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.growi.io/api/public/v1/stats/creators_24h")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"creators_24h": [
{
"date": "2025-09-06",
"last_date": "2025-06-29",
"current_new": 16,
"last_new": 0,
"total_new": 27,
"last_total_new": 24,
"current_active": 0,
"last_active": 0,
"total_active": 1,
"last_total_active": 1
}
]
}
}{
"error": "<string>",
"message": "<string>"
}Retrieves daily creator metrics with comparison to previous period. This endpoint tracks both new creators (who joined your database) and active creators (who made posts) for each date.
Key Definitions
- New Creators: Creators who joined your database on that specific date
- Active Creators: Creators who made at least one post on that specific date
Request Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
start_date | String | Start date in MM/DD/YYYY format | Yes |
end_date | String | End date in MM/DD/YYYY format | Yes |
Response Fields
| Field | Description |
|---|---|
date | Date string for the current day (YYYY-MM-DD format) |
last_date | Date string for the comparison day from the previous period (YYYY-MM-DD format) |
current_new | Number of new creators who joined on the current date |
last_new | Number of new creators who joined on the comparison date |
total_new | Cumulative total of new creators in the current period |
last_total_new | Cumulative total of new creators in the comparison period |
current_active | Number of creators who made posts on the current date |
last_active | Number of creators who made posts on the comparison date |
total_active | Cumulative total of active creators in the current period |
last_total_active | Cumulative total of active creators in the comparison period |
Request Example
curl -X GET "https://api.growi.io/api/public/v1/stats/creators_24h?start_date=01/01/2023&end_date=01/31/2023" \
-H "Authorization: Bearer YOUR_PUBLIC_API_KEY" \
-H "Content-Type: application/json"
Response Example
{
"success": true,
"data": {
"creators_24h": [
{
"date": "2025-09-06",
"last_date": "2025-06-29",
"current_new": 16,
"last_new": 0,
"total_new": 27,
"last_total_new": 24,
"current_active": 0,
"last_active": 0,
"total_active": 1,
"last_total_active": 1
},
{
"date": "2025-09-07",
"last_date": "2025-06-30",
"current_new": 5,
"last_new": 0,
"total_new": 27,
"last_total_new": 24,
"current_active": 0,
"last_active": 0,
"total_active": 1,
"last_total_active": 1
},
{
"date": "2025-09-17",
"last_date": "2025-07-10",
"current_new": 0,
"last_new": 1,
"total_new": 27,
"last_total_new": 24,
"current_active": 1,
"last_active": 0,
"total_active": 1,
"last_total_active": 1
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Start date in MM/DD/YYYY format
End date in MM/DD/YYYY format
⌘I