> ## Documentation Index
> Fetch the complete documentation index at: https://orangeslice.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape LinkedIn Post

> Extract content from a LinkedIn post

<Info>
  <Icon icon="coins" /> **1 credit** per post
</Info>

## Method

```typescript theme={null}
services.scrape.linkedinPost(params);
```

## Input

<ParamField path="url" type="string" required>
  LinkedIn post URL
</ParamField>

## Output

<ResponseField name="content" type="string">
  The post content/text
</ResponseField>

<ResponseField name="date" type="Date" optional>
  Parsed date of the post
</ResponseField>

<ResponseField name="relativeTime" type="string" optional>
  Relative time string (e.g., "2w", "1mo")
</ResponseField>

<ResponseField name="url" type="string">
  The post URL
</ResponseField>

## Example

```typescript theme={null}
const post = await services.scrape.linkedinPost({
  url: ctx.thisRow.get("Post URL"),
});

return post.content;
```
