# LinkedIn Company Posts

> LinkedIn Company Posts is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Fetches paginated posts from a company's LinkedIn page using the company's LinkedIn string or numeric ID

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/social/company/posts
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linkedin-company-posts-11ba56a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B_y3yrF1WtTLiGqgpJx4D

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 linkedin-company-posts-11ba56a4
```

Example prompt: Can you pull the latest posts from Microsoft's LinkedIn page? Their LinkedIn ID is 'microsoft' — grab the first page of results.

## When to prefer this

Use this endpoint when you need structured post data from a specific company's LinkedIn page, especially when paginating through large volumes of posts efficiently using the parentRequestId billing model to avoid paying for continuation pages. Prefer this over generic web scrapers when you have a known LinkedIn company ID and need clean, structured social post data.

## Known failure modes

- Invalid or non-existent LinkedIn company ID returns an error or empty result
- Missing required linkedinID or linkedinNumID parameter causes a validation error
- Payment failure or insufficient USDC balance blocks the request
- Rate limiting from upstream LinkedIn data source may cause timeouts
- Changing filter parameters while passing parentRequestId starts a new billable request unexpectedly

## How this service works

Get posts from a company's LinkedIn page. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of LinkedIn posts from the specified company, including post content, timestamps, and engagement metadata. Each response includes a requestId that can be reused as parentRequestId for free subsequent page calls on the same query.

## 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",
     "properties": {
      "page": {
       "type": "integer",
       "description": "For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "perPage": {
       "type": "integer"
      },
      "linkedinID": {
       "type": "string",
       "description": "LinkedIn string ID"
      },
      "linkedinNumID": {
       "type": "string",
       "description": "LinkedIn numeric ID"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linkedin-company-posts-11ba56a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
