# Linked Panda Company Search

> Linked Panda Company Search is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-14).

Searches for B2B companies on LinkedIn by keyword or query string, returning paginated results for lead generation and ICP targeting.

## Facts

- Endpoint: POST https://api.linkedpanda.com/agent/v1/companies/search
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linked-panda-company-search-99bc811c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0-Bbsopc-k_YkErhNXJpG

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 linked-panda-company-search-99bc811c -d '<json body>'
```

Example prompt: Search Linked Panda for companies related to 'cloud security software' and return the first page of results so I can identify potential ICP accounts for our outbound campaign.

## When to prefer this

Use this endpoint when you need to discover and enumerate companies matching a keyword or topic for B2B prospecting, ICP scoring, or account-based marketing — especially when LinkedIn company data is the source of truth and pagination across large result sets is needed.

## Known failure modes

- Empty results array when no companies match the search query
- Null pagination token when there are no more pages
- Malformed or missing search string returns empty results or error
- Page number out of bounds returns empty results set
- Rate limiting or payment failure (402) blocks the request

## How this service works

LinkedIn company search results page

## Output

Returns a paginated list of matching companies with a results array and pagination metadata including pageSize, pageNumber, totalElements, and a paginationToken for fetching subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "search": {
   "type": "string"
  },
  "requestContext": {
   "type": "object",
   "properties": {
    "requestId": {
     "type": "string"
    },
    "userIntent": {
     "type": "string"
    },
    "promptSummary": {
     "type": "string"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [],
  "pagination": {
   "pageSize": 0,
   "pageNumber": 1,
   "totalElements": 0,
   "paginationToken": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linked-panda-company-search-99bc811c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.linkedpanda.com](https://www.zero.xyz/host/api.linkedpanda.com/llms.txt)
