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

Retrieves your top-performing creators ranked by Gross Merchandise Value (GMV) within a specified date range.

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

Request Example

curl -X GET "https://api.growi.io/api/public/v1/stats/top_creators_by_gmv?start_date=01/01/2023&end_date=01/31/2023&limit=5" \
     -H "Authorization: Bearer YOUR_PUBLIC_API_KEY" \
     -H "Content-Type: application/json"

Response Example

{
  "success": true,
  "data": {
    "top_creators_by_gmv": [
      {
        "id": 100001,
        "name": "Alex Thompson",
        "email": "alex.thompson@example.com",
        "total_gmv": 187542.75
      },
      {
        "id": 100002,
        "name": "Sarah Miller",
        "email": "sarah.miller@example.com",
        "total_gmv": 156874.32
      },
      {
        "id": 100003,
        "name": "James Wilson",
        "email": "james.wilson@example.com",
        "total_gmv": 132547.84
      },
      {
        "id": 100004,
        "name": "Emily Davis",
        "email": "emily.davis@example.com",
        "total_gmv": 98754.67
      },
      {
        "id": 100005,
        "name": "Michael Chen",
        "email": "michael.chen@example.com",
        "total_gmv": 87542.28
      }
    ]
  }
}

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

Top creators by GMV retrieved successfully

The response is of type object.