# SocialFetch LinkedIn Company Posts

> SocialFetch LinkedIn Company Posts is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-16).

Lists posts from a LinkedIn company page given a company URL or slug, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/linkedin/companies/posts
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-linkedin-company-posts-1653c3c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mThY1iEeYvzPGOQLnCCux

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-linkedin-company-posts-1653c3c4
```

Example prompt: Can you pull the latest posts from Tesla's LinkedIn company page — grab the first two pages of posts so I can see what they've been sharing recently?

## When to prefer this

Use this endpoint when you need to retrieve a LinkedIn company's public post history for monitoring, competitive analysis, content aggregation, or research, and you have the company's LinkedIn page URL or slug. Prefer this over general web scraping when you need structured, paginated LinkedIn company post data specifically.

## Known failure modes

- Invalid or non-existent LinkedIn company URL/slug returns an error
- Requested page number exceeds the 7-page limit
- Rate limiting or payment failure returns 402 or 429 error
- Private or restricted company pages may return no results
- Malformed URL parameter causes validation error

## How this service works

List posts from one specific LinkedIn company page by URL (not a keyword search — use linkedin.posts.search.list to search across public posts).

## Output

A paginated list of posts from the specified LinkedIn company page, including post content, metadata, and engagement data for up to 7 pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "LinkedIn company page URL or slug whose posts should be listed."
      },
      "page": {
       "type": "integer",
       "maximum": 7,
       "minimum": 1,
       "description": "1-based results page number. Pagination is page-based; at most 7 pages can be requested for a given company."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-linkedin-company-posts-1653c3c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
