# Roster - Company Job Listings Lookup

> Roster - Company Job Listings Lookup 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-14).

Searches job listings and hiring data by company, returning structured employment and recruitment information for AI agents.

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/companies
- 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/roster-company-job-listings-lookup-2a35662c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B-fRBA2W02XjvayAtA6Q4

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-company-job-listings-lookup-2a35662c -d '<json body>'
```

Example prompt: Can you look up what jobs Stripe is currently hiring for using Roster — I want to see their active listings and hiring activity?

## When to prefer this

Use this endpoint when an AI agent needs to look up job listings or hiring activity for specific companies without requiring API keys or subscriptions — ideal for one-off, pay-per-use recruiting data lookups billed in USDC via x402.

## Known failure modes

- Query string missing — returns 400 validation error
- No matching companies or listings found — returns empty data object with success true
- Payment not provided or insufficient USDC — returns 402 Payment Required
- Service unavailable or upstream data error — returns 500 with failure flag

## How this service works

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

## Output

Returns a structured object with a success flag and a data object containing company job listings and hiring information matching the search query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## 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-company-job-listings-lookup-2a35662c/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)
