> ## Documentation Index
> Fetch the complete documentation index at: https://growi.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 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

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

```bash theme={null}
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

```json theme={null}
{
  "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
      }
    ]
  }
} 
```


## OpenAPI

````yaml GET /stats/creators_24h
openapi: 3.0.1
info:
  title: Growi API
  description: >-
    API documentation for Growi platform, showcasing the public tracking event
    endpoint
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.growi.io/api/public/v1
security:
  - bearerAuth: []
paths:
  /stats/creators_24h:
    get:
      description: >-
        Retrieves daily creator metrics tracking both new creators (who joined
        your database) and active creators (who made posts) with comparison to
        previous period
      parameters:
        - name: start_date
          in: query
          required: true
          example: 10/01/2025
          schema:
            type: string
            format: date
            default: 10/01/2025
          description: Start date in MM/DD/YYYY format
        - name: end_date
          in: query
          required: true
          example: 11/14/2025
          schema:
            type: string
            format: date
            default: 11/14/2025
          description: End date in MM/DD/YYYY format
      responses:
        '200':
          description: Creators 24h data retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      creators_24h:
                        type: array
                        items:
                          type: object
                          properties:
                            date:
                              type: string
                              example: '2025-09-06'
                              description: Date for the current day (YYYY-MM-DD format)
                            last_date:
                              type: string
                              example: '2025-06-29'
                              description: >-
                                Date for the comparison day from the previous
                                period (YYYY-MM-DD format)
                            current_new:
                              type: integer
                              example: 16
                              description: >-
                                Number of new creators who joined on the current
                                date
                            last_new:
                              type: integer
                              example: 0
                              description: >-
                                Number of new creators who joined on the
                                comparison date
                            total_new:
                              type: integer
                              example: 27
                              description: >-
                                Cumulative total of new creators in the current
                                period
                            last_total_new:
                              type: integer
                              example: 24
                              description: >-
                                Cumulative total of new creators in the
                                comparison period
                            current_active:
                              type: integer
                              example: 0
                              description: >-
                                Number of creators who made posts on the current
                                date
                            last_active:
                              type: integer
                              example: 0
                              description: >-
                                Number of creators who made posts on the
                                comparison date
                            total_active:
                              type: integer
                              example: 1
                              description: >-
                                Cumulative total of active creators in the
                                current period
                            last_total_active:
                              type: integer
                              example: 1
                              description: >-
                                Cumulative total of active creators in the
                                comparison period
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````