# Roster LinkedIn Job Search

> Roster LinkedIn Job Search is a paid API for AI agents from rost3r-v0.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Fetches LinkedIn job listings and hiring data based on a role and optional profile attributes, paid per request in USDC via x402

## Facts

- Endpoint: POST https://rost3r-v0.orbonomy.xyz/api/linkedin
- Price: $0.05/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-afe58247
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v1AO99LO0zpk4mxKypH4X

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-afe58247 -d '<json body>'
```

Example prompt: Search Roster for current LinkedIn job listings for a Senior Software Engineer role with skills in Python and Kubernetes, with a headline like 'Backend Engineer at Scale'.

## When to prefer this

Use this endpoint when an AI agent needs to retrieve real-time LinkedIn job listings and hiring data for a specific role, optionally filtered by skills, headline, or summary, and can pay per request in USDC without requiring an API subscription or authentication setup.

## Known failure modes

- Missing required 'role' field returns validation error
- Payment failure via x402 returns 402 status with payment instructions
- No matching jobs found returns empty data object with success true
- LinkedIn source unavailable returns error in data object
- Malformed input schema returns 400 bad request

## 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 flag and a data object containing job listings and hiring data matching the specified role, skills, and profile attributes 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-afe58247/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rost3r-v0.orbonomy.xyz](https://www.zero.xyz/host/rost3r-v0.orbonomy.xyz/llms.txt)
