APIPosts

Get Post History

Retrieve your posting history with status information for each platform. **Pagination**: - Use `page` parameter for pagination (10 items per page) - Or use `startTime` and `endTime` for date range filtering (returns all matching posts) **Status Values**: - PENDING: Post is queued - SUCCESS: Posted successfully - FAILED: Post failed (check message field for error code)

GET
/post/history

Retrieve your posting history with status information for each platform.

Pagination:

  • Use page parameter for pagination (10 items per page)
  • Or use startTime and endTime for date range filtering (returns all matching posts)

Status Values:

  • PENDING: Post is queued
  • SUCCESS: Posted successfully
  • FAILED: Post failed (check message field for error code)

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

page?integer
startTime?integer
endTime?integer

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/post/history"
{  "success": true,  "data": [    {      "id": "507f1f77bcf86cd799439011",      "description": "My video post",      "filename": "screenshot.jpg",      "result": [        {          "platform": "TikTok",          "usernameImage": "profile.jpg",          "id": "507f1f77bcf86cd799439012",          "username": "myusername",          "status": "SUCCESS"        }      ],      "scheduled": false,      "date": "2026-02-19T10:00:00.000Z"    }  ],  "total": 1}
{  "success": false}
{  "success": false}