PostMantis
API ReferencePublishing Logs

List publishing log entries

Returns chronological delivery status history (pending, published, failed, canceled). Pending means accepted and waiting for dispatch or scheduled time.

GET
/api/v1/publish/logs

Returns chronological delivery status history (pending, published, failed, canceled). Pending means accepted and waiting for dispatch or scheduled time.

Authorization

BearerAuth
AuthorizationBearer <token>

PostMantis API key from the dashboard. Include as Authorization: Bearer <key>.

In: header

Query Parameters

limit?|

Max entries to return, 0-100. Default 50.

Range0 <= value <= 100
Default50
offset?|

Zero-based offset for pagination. Default 0.

Range0 <= value
Default0

Response Body

application/json

application/problem+json

application/problem+json

curl -X GET "https://example.com/api/v1/publish/logs"

{  "data": [    {      "id": "c3d4e5f6-a7b8-9012-cdef-345678901234",      "deliveryId": "d4e5f6a7-b8c9-0123-defa-456789012345",      "postId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",      "postBody": "Ship small. Learn fast.",      "provider": "x",      "profileName": "PostMantis on X",      "type": "published",      "occurredAt": "2026-05-05T10:01:00.000Z",      "releaseUrl": "https://x.com/postmantis/status/1234567890",      "providerPostId": "1234567890"    }  ]}