cURL
curl --request GET \
--url https://api.growi.io/api/public/v1/stats/top_creators_by_posts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.growi.io/api/public/v1/stats/top_creators_by_posts"
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/top_creators_by_posts', 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/top_creators_by_posts",
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/top_creators_by_posts"
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/top_creators_by_posts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.growi.io/api/public/v1/stats/top_creators_by_posts")
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": {}
}{
"error": "<string>",
"message": "<string>"
}Stats API
Get Top Creators By Posts
Retrieves your most active creators ranked by post count within a specified date range
GET
/
stats
/
top_creators_by_posts
cURL
curl --request GET \
--url https://api.growi.io/api/public/v1/stats/top_creators_by_posts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.growi.io/api/public/v1/stats/top_creators_by_posts"
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/top_creators_by_posts', 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/top_creators_by_posts",
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/top_creators_by_posts"
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/top_creators_by_posts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.growi.io/api/public/v1/stats/top_creators_by_posts")
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": {}
}{
"error": "<string>",
"message": "<string>"
}Retrieves your most active creators ranked by post count within a specified date range.
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 |
limit | Integer | Limit the number of results. Default is 4. Recommended is 20. Set to 10,000 to get all data. | No |
page | Integer | Page number for pagination. Default is 1. | No |
per_page | Integer | Number of results per page. Default is 40. Maximum is 100. | No |
Request Example
curl -X GET "https://api.growi.io/api/public/v1/stats/top_creators_by_posts?start_date=01/01/2023&end_date=01/31/2023&limit=5&page=1&per_page=20" \
-H "Authorization: Bearer YOUR_PUBLIC_API_KEY" \
-H "Content-Type: application/json"
Response Example
{
"success": true,
"data": {
"top_creators_by_posts": [
{
"id": 100001,
"name": "Alex Thompson",
"email": "alex.thompson@example.com",
"post_count": 31
},
{
"id": 100002,
"name": "Sarah Miller",
"email": "sarah.miller@example.com",
"post_count": 29
},
{
"id": 100003,
"name": "James Wilson",
"email": "james.wilson@example.com",
"post_count": 20
},
{
"id": 100004,
"name": "Emily Davis",
"email": "emily.davis@example.com",
"post_count": 16
},
{
"id": 100005,
"name": "Michael Chen",
"email": "michael.chen@example.com",
"post_count": 14
},
{
"id": 100006,
"name": "Rachel Park",
"email": "rachel.park@example.com",
"post_count": 11
},
{
"id": 100007,
"name": "David Martinez",
"email": "david.martinez@example.com",
"post_count": 10
},
{
"id": 100008,
"name": "Lisa Wang",
"email": "lisa.wang@example.com",
"post_count": 9
},
{
"id": 100009,
"name": "Thomas Anderson",
"email": "thomas.anderson@example.com",
"post_count": 9
},
{
"id": 100010,
"name": "Sofia Rodriguez",
"email": "sofia.rodriguez@example.com",
"post_count": 8
},
{
"id": 100011,
"name": "Kevin Lee",
"email": "kevin.lee@example.com",
"post_count": 7
},
{
"id": 100012,
"name": "Anna Kim",
"email": "anna.kim@example.com",
"post_count": 6
},
{
"id": 100013,
"name": "John Smith",
"email": "john.smith@example.com",
"post_count": 6
},
{
"id": 100014,
"name": "Maria Garcia",
"email": "maria.garcia@example.com",
"post_count": 5
},
{
"id": 100015,
"name": "Daniel Brown",
"email": "daniel.brown@example.com",
"post_count": 5
},
{
"id": 100016,
"name": "Emma Taylor",
"email": "emma.taylor@example.com",
"post_count": 4
},
{
"id": 100017,
"name": "Oliver White",
"email": "oliver.white@example.com",
"post_count": 4
},
{
"id": 100018,
"name": "Isabella Jones",
"email": "isabella.jones@example.com",
"post_count": 4
},
{
"id": 100019,
"name": "Lucas Green",
"email": "lucas.green@example.com",
"post_count": 3
}
]
},
"meta": {
"current_page": 1,
"per_page": 20,
"row_count": 163,
"page_count": 9,
"has_more": true
}
}
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
Limit the number of results. Default is 4. Recommended is 20. Set to 10,000 to get all data.
⌘I