# Linked Panda - LinkedIn Job Search

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

Searches LinkedIn job postings by keyword, returning paginated results for B2B lead intelligence and pipeline generation.

## Facts

- Endpoint: POST https://api.linkedpanda.com/agent/v1/jobs/search
- Price: $0.05/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-linkedin-job-search-93c64517
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dgRNsA7emxA5Jf1brZgRk

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-linkedin-job-search-93c64517 -d '<json body>'
```

Example prompt: Search LinkedIn jobs for 'enterprise account executive' and show me the first page of results — I want to find companies actively hiring for this role so I can build a prospecting list.

## When to prefer this

Use this endpoint when you need to search LinkedIn job postings by keyword or role title and want paginated results — especially useful for B2B sales prospecting, ICP scoring based on hiring signals, or identifying companies actively recruiting for specific skills. Prefer this over company or profile search endpoints when job-posting data is the primary signal needed.

## Known failure modes

- Empty results array when no jobs match the search query
- Pagination token null when only one page of results exists
- Rate limiting or payment failure returning 402 if USDC payment is not attached
- Invalid page number returning empty or error response
- LinkedIn data unavailability causing empty results

## How this service works

LinkedIn job search results page

## Output

A paginated list of LinkedIn job postings matching the search query, with pagination metadata including page size, page number, total elements, and a pagination token 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-linkedin-job-search-93c64517/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)
