# LinkedIn Profile Images API (https://www.socialcrawl.dev/platforms/linkedin/profile-images) > List a member's image posts — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/profile/images` 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/images?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 image posts? Send a GET request to /v1/linkedin/profile/images with the member's LinkedIn profile URL in the url parameter. The response returns the member's image posts as a feed, each with post text, image media URLs, publish time, and engagement counts. ### What fields come back for each image post? Each post returns the post URL, text, image media URLs, publish timestamp, and reaction, comment, and share counts. It is the image slice of a member's activity, so you get only posts that include images. ### How do I paginate through the image 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 image posts. ### How much does the LinkedIn Images API cost? Each page costs 5 credits on the advanced tier, regardless of how many image posts come back. New accounts get 100 free credits with no credit card, enough for 20 pages before you need to upgrade. ### What is a good use case for member image posts? Pulling a member's image posts is useful for creator analytics, content audits, and monitoring what a prospect or thought leader shares visually. Combine it with the videos feed to cover a person's full media output. 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 image posts with an API - Which API returns LinkedIn photo posts as a feed