GET
/
stats
/
creators_24h
curl --request GET \
  --url https://api.growi.io/api/public/v1/stats/creators_24h \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {}
}

Retrieves newly joined creators data with comparison to previous period. For each date, you get that day’s new creator metrics along with the corresponding data from a period before for comparison.

Request Parameters

ParameterTypeDescriptionRequired
start_dateStringStart date in MM/DD/YYYY formatYes
end_dateStringEnd date in MM/DD/YYYY formatYes
limitIntegerLimit the number of results. Default is 4. Recommended is 20. Set to 10,000 to get all data.No

Response Fields

FieldDescription
dateUnix timestamp for the current day
last_dateUnix timestamp for the comparison day (1 week before)
currentNumber of new creators for the current day
lastNumber of new creators for the comparison day
totalRunning total of creators as of the latest date
last_totalRunning total of creators as of the comparison period’s latest date

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": {
    "current_period": {
      "date_range": "2023-01-30 to 2023-01-31",
      "new_creators": 18,
      "active_creators": 142,
      "dormant_creators": 8,
      "creator_retention_rate": 94.3,
      "avg_posts_per_creator": 2.4,
      "avg_engagement_per_creator": 876
    },
    "previous_period": {
      "date_range": "2023-01-28 to 2023-01-29",
      "new_creators": 15,
      "active_creators": 135,
      "dormant_creators": 12,
      "creator_retention_rate": 91.2,
      "avg_posts_per_creator": 2.2,
      "avg_engagement_per_creator": 821
    },
    "changes": {
      "new_creators": {
        "value": 3,
        "percentage": 20.0
      },
      "active_creators": {
        "value": 7,
        "percentage": 5.2
      },
      "dormant_creators": {
        "value": -4,
        "percentage": -33.3
      },
      "creator_retention_rate": {
        "value": 3.1,
        "percentage": 3.4
      },
      "avg_posts_per_creator": {
        "value": 0.2,
        "percentage": 9.1
      },
      "avg_engagement_per_creator": {
        "value": 55,
        "percentage": 6.7
      }
    },
    "creators_24h": [
      {
        "date": 1747267200,
        "last_date": 1746662400,
        "current": 18,
        "last": 15,
        "name": "New Creators",
        "total": 142,
        "last_total": 135
      },
      {
        "date": 1747353600,
        "last_date": 1746748800,
        "current": 16,
        "last": 12,
        "name": "New Creators",
        "total": 158,
        "last_total": 147
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

start_date
string
default:05/01/2025
required

Start date in MM/DD/YYYY format

end_date
string
default:05/08/2025
required

End date in MM/DD/YYYY format

limit
integer
default:4

Limit the number of results. Default is 4. Recommended is 20. Set to 10,000 to get all data.

Response

200
application/json

Creators 24h data retrieved successfully

The response is of type object.