curl --request GET \
--url https://api.agntdata.dev/v1/linkedin/get-user-articles \
--header 'Authorization: <api-key>'{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"urn": {
"type": "string"
},
"url": {
"type": "string"
},
"duration": {
"type": "string"
},
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"images": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
}
}
},
"totalSocialActivityCounts": {
"type": "object",
"properties": {
"numComments": {
"type": "integer"
},
"likeCount": {
"type": "integer"
},
"appreciationCount": {
"type": "integer"
},
"empathyCount": {
"type": "integer"
},
"InterestCount": {
"type": "integer"
},
"praiseCount": {
"type": "integer"
},
"funnyCount": {
"type": "integer"
},
"maybeCount": {
"type": "integer"
},
"totalReactionCount": {
"type": "integer"
},
"numShares": {
"type": "integer"
}
}
}
}
}
},
"currentPage": {
"type": "integer"
}
}
}
}
}Get user articles by profile with url or username
curl --request GET \
--url https://api.agntdata.dev/v1/linkedin/get-user-articles \
--header 'Authorization: <api-key>'{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"urn": {
"type": "string"
},
"url": {
"type": "string"
},
"duration": {
"type": "string"
},
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"images": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
}
}
},
"totalSocialActivityCounts": {
"type": "object",
"properties": {
"numComments": {
"type": "integer"
},
"likeCount": {
"type": "integer"
},
"appreciationCount": {
"type": "integer"
},
"empathyCount": {
"type": "integer"
},
"InterestCount": {
"type": "integer"
},
"praiseCount": {
"type": "integer"
},
"funnyCount": {
"type": "integer"
},
"maybeCount": {
"type": "integer"
},
"totalReactionCount": {
"type": "integer"
},
"numShares": {
"type": "integer"
}
}
}
}
}
},
"currentPage": {
"type": "integer"
}
}
}
}
}Bearer token. Pass your agntdata API key as: Authorization: Bearer agnt_live_...