# LinkedIn Profile Videos API (https://www.socialcrawl.dev/platforms/linkedin/profile-videos) > List a member's video posts — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/profile/videos` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the LinkedIn profile, company, or post. | | `cursor` | no | | | `page` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/profile/videos?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fwilliamhgates%2F" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a LinkedIn member's video posts? Send a GET request to /v1/linkedin/profile/videos with the member's LinkedIn profile URL in the url parameter. The response returns the member's video posts as a feed, each with post text, video URLs, thumbnail, publish time, and engagement counts. ### What fields come back for each video post? Each post returns the post URL, text, video playback URL, thumbnail, publish timestamp, and reaction, comment, and share counts. It is the video slice of a member's activity, so you get only posts that include video. ### How do I paginate through the video feed? Use the cursor and page parameters to page through the feed. Pass the cursor returned in the response back on the next call, or increment page, until the feed returns empty and there are no more video posts. ### How much does the LinkedIn Videos API cost? Each page costs 5 credits on the advanced tier, regardless of how many video posts come back. New accounts get 100 free credits with no credit card, enough for 20 pages before you ever pay. ### What is a good use case for member video posts? A member's video feed is useful for creator analytics, tracking a thought leader's video cadence, and sourcing the most-watched clips. Pair it with the images feed to capture a person's full media output on LinkedIn. See the full LinkedIn API: https://www.socialcrawl.dev/platforms/linkedin ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get a LinkedIn member's video posts with an API - Which API returns LinkedIn video posts as a feed