# Roster LinkedIn Job Data Endpoint

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

Returns job listings and hiring data from LinkedIn for a given role, optionally filtered by skills, summary, and headline

## Facts

- Endpoint: POST https://roster.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-data-endpoint-1c3c6b21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_feMWCsJIPMBjxgJHCYQ_T

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-data-endpoint-1c3c6b21 -d '<json body>'
```

Example prompt: Search Roster for LinkedIn job listings for a 'Senior Machine Learning Engineer' role, focusing on skills like 'Python, PyTorch, LLMs', with a headline of 'AI/ML Engineer' and a summary of 'Experienced ML engineer specializing in large language models'.

## When to prefer this

Use this endpoint when an AI agent needs to retrieve LinkedIn job listings or hiring data for a specific role without requiring OAuth or subscription-based LinkedIn API access. Ideal for pay-per-use agent workflows where cost control matters and no persistent auth is desired.

## Known failure modes

- Missing required 'role' field returns validation error
- Invalid or unrecognized role string may return empty results
- Payment failure via x402 protocol results in 402 response and no data
- LinkedIn data unavailability may return empty data object with success:true
- Overly niche skill combinations may yield sparse or no results

## 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 relevant to the specified role, skills, summary, and headline 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-data-endpoint-1c3c6b21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster.orbonomy.xyz](https://www.zero.xyz/host/roster.orbonomy.xyz/llms.txt)
