# Bytemine Job Postings Search

> Bytemine Job Postings Search 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-20).

Searches a daily-crawled global index of open job postings, filterable by title, company, location, seniority, team, industry, and recency, billed per result returned.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/v1/signals/job-postings
- Price: $0.2/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-20
- 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-bytemine-job-postings-search-b12f38b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_49Toq7K8N0iLzxM4xEMmS

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-bytemine-job-postings-search-b12f38b6 -d '<json body>'
```

Example prompt: Search Bytemine's job postings index for senior software engineer roles at fintech companies in New York posted in the last 14 days — remote positions only, limit to 25 results.

## When to prefer this

Choose this endpoint when you need structured, filterable job posting data sourced from a daily-refreshed global crawl of company career sites and ATS boards — especially for sales prospecting (hiring signals), competitive intelligence, or talent discovery at scale. It supports free count-only queries for volume checks before committing spend. Prefer it over general web search when you need structured fields (seniority, team, remote, employment type) and reliable recency across 10M+ companies.

## Known failure modes

- No results returned if filters are too restrictive or the company has no recent postings in the index
- Invalid seniority, industry, or employment_type values may return empty results if they don't match exact indexed values
- days parameter out of range (outside 1-90) may cause a validation error
- Offset beyond total result count returns an empty postings array
- Payment failure (402) if the agent's account lacks funds for the billed records

## 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 paginated list of job postings, each including posting ID, job title, company name, company domain, location, remote flag, seniority, team/department, employment type, posting URL, and date posted. Also includes a total count of matching results. Count-only mode (count: true) returns just the total for free.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "days": {
   "type": "integer",
   "description": "Only postings from the last N days, 1 to 90. Default 30."
  },
  "team": {
   "type": "string",
   "description": "Exact department or team name."
  },
  "count": {
   "type": "boolean",
   "description": "True returns a free count only."
  },
  "limit": {
   "type": "integer",
   "description": "Results per page. Default 25, max 100."
  },
  "title": {
   "type": "string",
   "description": "Job title partial match."
  },
  "domain": {
   "type": "string",
   "description": "Exact company domain."
  },
  "offset": {
   "type": "integer"
  },
  "company": {
   "type": "string",
   "description": "Company name partial match."
  },
  "industry": {
   "type": "string",
   "description": "Exact industry name."
  },
  "location": {
   "type": "string",
   "description": "Location partial match."
  },
  "seniority": {
   "type": "string"
  },
  "remote_only": {
   "type": "boolean"
  },
  "employment_type": {
   "type": "string",
   "description": "Exact employment type, for example Full-time."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "total": {
   "type": "integer"
  },
  "postings": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "id": {
      "type": "string"
     },
     "url": {
      "type": "string"
     },
     "team": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "domain": {
      "type": "string"
     },
     "location": {
      "type": "string"
     },
     "is_remote": {
      "type": "boolean"
     },
     "posted_at": {
      "type": "string"
     },
     "seniority": {
      "type": "string"
     },
     "company_name": {
      "type": "string"
     },
     "employment_type": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-bytemine-job-postings-search-b12f38b6/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)
