Skip to main content
GET
/
stats
/
creators_24h
cURL
curl --request GET \
  --url https://api.growi.io/api/public/v1/stats/creators_24h \
  --header 'Authorization: Bearer <token>'
{
  "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
      }
    ]
  }
}
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

ParameterTypeDescriptionRequired
start_dateStringStart date in MM/DD/YYYY formatYes
end_dateStringEnd date in MM/DD/YYYY formatYes

Response Fields

FieldDescription
dateDate string for the current day (YYYY-MM-DD format)
last_dateDate string for the comparison day from the previous period (YYYY-MM-DD format)
current_newNumber of new creators who joined on the current date
last_newNumber of new creators who joined on the comparison date
total_newCumulative total of new creators in the current period
last_total_newCumulative total of new creators in the comparison period
current_activeNumber of creators who made posts on the current date
last_activeNumber of creators who made posts on the comparison date
total_activeCumulative total of active creators in the current period
last_total_activeCumulative 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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start_date
string<date>
default:10/01/2025
required

Start date in MM/DD/YYYY format

end_date
string<date>
default:11/14/2025
required

End date in MM/DD/YYYY format

Response

Creators 24h data retrieved successfully

success
boolean
Example:

true

data
object