# Get Hiring Trends for a Company

> Get Hiring Trends for a Company is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP or x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns hiring composition, headcount growth by function and seniority, and live open job postings for a single company.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/v1/signals/hiring
- Price: $0.2/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-get-hiring-trends-for-a-company-db8d1ed1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JNxaF6jtNOUMeSo-3oo1F

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 agents-bytemine-ai-get-hiring-trends-for-a-company-db8d1ed1 -d '<json body>'
```

Example prompt: Pull the hiring trends for Stripe over the last 6 months — I want to see headcount growth by function and seniority, and include their live open roles.

## When to prefer this

Use this endpoint when you need structured hiring intelligence for a specific company — including headcount growth trends, function and seniority composition, and live job postings — identified by domain, name, or LinkedIn URL. Prefer this over generic job search APIs when you need aggregated growth signals (not just raw listings) and want them alongside company context. It is ideal for sales prospecting (detecting expansion signals), competitive analysis, and recruiting research on named target accounts.

## Known failure modes

- Company not found — found: false returned, no charge applied
- Ambiguous company name matches multiple entities — may return wrong company
- LinkedIn URL malformed or not recognized — no match returned
- Trend window outside 3–36 months — validation error
- No open postings found even for matched company — postings array empty
- Rate limiting or gateway timeout on large companies with many postings

## How this service works

Bytemine is a B2B data platform for sales and go to market teams. It covers contact and company search across 135M professionals and 10M companies, contact and company enrichment, LinkedIn profile search and enrichment, live company intelligence read from a company's own web presence, technographics, buying intent scoring, and hiring, funding, job posting, and job change signals. Search results bill per record returned, enrichment bills only on a successful match, and count queries are free. This server is a pay-per-use, transparent proxy in front of Bytemine's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge, reserved for agents claimed by a human with a verified email.

## Output

Returns a structured object including: a found boolean indicating if the company was matched; a company profile object; an array of hiring trend data points over the requested period; a headcount summary object; function-level and seniority-level breakdowns as arrays; a highlights object with key insights; and optionally an array of live open job postings with role details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Company domain. One of domain, company, or linkedin is required."
  },
  "months": {
   "type": "integer",
   "description": "Trend window in months, 3 to 36. Default 12."
  },
  "company": {
   "type": "string",
   "description": "Company name."
  },
  "linkedin": {
   "type": "string",
   "description": "Company LinkedIn URL."
  },
  "include_postings": {
   "type": "boolean",
   "description": "Include live open roles. Default true."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "found": {
   "type": "boolean"
  },
  "trends": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "company": {
   "type": "object"
  },
  "postings": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "functions": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "headcount": {
   "type": "object"
  },
  "highlights": {
   "type": "object"
  },
  "seniorities": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-get-hiring-trends-for-a-company-db8d1ed1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.bytemine.ai](https://www.zero.xyz/host/agents.bytemine.ai/llms.txt)
