Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
linkedin
/
post
LinkedIn Post
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/linkedin/post \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "url": "<string>",
    "name": "<string>",
    "headline": "<string>",
    "commentCount": 123,
    "likeCount": 123,
    "datePublished": "<string>",
    "author": {},
    "comments": [
      {}
    ]
  },
  "meta": {}
}

Parameters

url
string
required
The full LinkedIn post or article URL

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/linkedin/post?url=https://linkedin.com/pulse/being-father-has-made-me-better-leader-austen-allred" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "url": "https://www.linkedin.com/pulse/being-father-has-made-me-better-leader-vice-versa-austen-allred",
    "name": "Being a Father Has Made me a Better Leader, and Vice Versa",
    "headline": "It's not all that unique to be a 26-year-old founder in Silicon Valley...",
    "commentCount": 17,
    "likeCount": 210,
    "datePublished": "2020-06-21T14:35:59.000+00:00",
    "description": "It's not all that unique to be a 26-year-old founder in Silicon Valley...",
    "author": {
      "name": "Austen Allred",
      "url": "https://www.linkedin.com/in/austenallred",
      "followers": 30863
    },
    "comments": [
      {
        "author": "Jeremy M.",
        "text": "Austen, thanks for sharing!",
        "linkedinUrl": "https://uk.linkedin.com/in/jeremymurray"
      }
    ]
  },
  "meta": {
    "platform": "linkedin",
    "endpoint": "post",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}