Skip to main content
GET
/
api
/
v1
/
linkedin
/
posts
List Posts
curl --request GET \
  --url https://api.example.com/api/v1/linkedin/posts/ \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "connected_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "unipile_post_id": "<string>",
      "social_id": "<string>",
      "text": "<string>",
      "share_url": "<string>",
      "attachments": [],
      "is_repost": false,
      "author_name": "<string>",
      "author_id": "<string>",
      "published_at": "2023-11-07T05:31:56Z",
      "scheduled_at": "2023-11-07T05:31:56Z",
      "retry_count": 0,
      "last_error": "<string>",
      "impressions": 0,
      "reactions": 0,
      "comments": 0,
      "reposts": 0,
      "metrics_updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "accounts": [],
  "next_after": "<string>",
  "total_count": 0
}

Documentation Index

Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

connected_account_id
string<uuid> | null
after
string | null
limit
integer
default:20
Required range: 1 <= x <= 100

Response

Successful Response

items
LinkedInPostResponse · object[]
required
accounts
ConnectedAccountOption · object[]
next_after
string | null
total_count
integer
default:0