# Roster LinkedIn Job Search

> Roster LinkedIn Job Search is a paid API for AI agents from rasoster.netlify.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Returns job listings and hiring data from LinkedIn for a given role, skills, and professional profile context

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/linkedin
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-linkedin-job-search-7006b944
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l2RpPCopvZJObHqoAd6zX

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 roster-linkedin-job-search-7006b944 -d '<json body>'
```

Example prompt: Search Roster for LinkedIn job listings for a Senior Product Manager role, with skills in roadmap planning and stakeholder management, and a headline of 'Product Leader at Series B Startups'.

## When to prefer this

Use this endpoint when an AI agent needs to find job listings or hiring data from LinkedIn without setting up subscriptions or API keys — particularly useful for pay-per-request pipelines where cost control matters and the query is role or skills-based.

## Known failure modes

- Missing required 'role' field returns validation error
- Payment of 0.3 USDC not completed results in 402 Payment Required
- LinkedIn data unavailable or rate-limited may return empty data set
- Overly broad or vague role string may return irrelevant listings
- Network timeout from upstream LinkedIn source

## How this service works

Job listings and hiring data for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

A JSON object with a success boolean and a data object containing job listings and hiring data relevant to the specified role, skills, and professional profile from LinkedIn.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "role"
 ],
 "properties": {
  "role": {
   "type": "string"
  },
  "skills": {
   "type": "string"
  },
  "summary": {
   "type": "string"
  },
  "headline": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/roster-linkedin-job-search-7006b944/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rasoster.netlify.app](https://www.zero.xyz/host/rasoster.netlify.app/llms.txt)
