Skip to main content
GET
cURL
Retrieves all user content creation data within a specified date range.

Request Parameters

Request Example

To include all-time views for each post, add include_all_time_views=true:
To sort results by posted date (newest first):

Sorting Behavior

The posted_at_sort parameter sorts results by the content’s posted date (create_time):
  • asc - Oldest posts first
  • desc - Newest posts first
Sorting is applied before pagination, ensuring consistent ordering across all pages. For example, if you have 100 posts and use posted_at_sort=desc with limit=10:
  • Page 1 shows the 10 newest posts
  • Page 2 shows the next 10 newest posts
  • And so on…

Response Example

Response Fields

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

limit
integer
default:4

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

page
integer
default:1

Page number for pagination. Default is 1.

per_page
integer
default:40

Number of results per page. Default is 40. Maximum is 100.

Required range: x <= 100
include_all_time_views
boolean
default:false

Include the post's current all-time views in the response. Default is false.

posted_at_sort
enum<string>

Sort results by posted date. Use 'asc' for oldest first or 'desc' for newest first. Case-insensitive. If not provided or invalid, no sorting is applied.

Available options:
asc,
desc

Response

User contents data retrieved successfully

success
boolean
Example:

true

data
object

User contents data