# Bytemine M&A Acquisition Signals Search

> Bytemine M&A Acquisition Signals Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-13).

Search real-time M&A and acquisition signals with filters for acquirer, target company, deal amount, industry, country, and date range.

## Facts

- Endpoint: POST https://x402.orthogonal.com/bytemine/signals/acquisitions
- Price: $0.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bytemine-m-a-acquisition-signals-search-31e91cc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TZMeyI2M0AZsFR674Lchl

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 bytemine-m-a-acquisition-signals-search-31e91cc6 -d '<json body>'
```

Example prompt: Can you search for acquisitions in the fintech industry from the last 30 days where the deal amount was at least $50 million, sorted by amount descending? Show me the first 20 results.

## When to prefer this

Use this endpoint when you need real-time M&A deal intelligence with rich filtering — especially when you need to filter by acquirer identity, deal size, industry vertical, geography, or date range simultaneously. Prefer this over generic news search when you need structured deal data (amounts, company names, dates) rather than news articles. The free count-only mode is useful for gauging deal volume before committing credits to full record retrieval.

## Known failure modes

- Invalid date format returns a 400 error — use YYYY-MM-DD
- amount_min/amount_max must be in USD cents, not dollars — wrong unit returns unexpected results
- Unsupported sort_by field returns an error
- Exceeding limit of 100 per page may return a validation error
- No results found returns an empty records array rather than an error
- Invalid country code or industry string may silently return zero results

## How this service works

Search real-time M&A/acquisition signals with filters for acquirer, amount, industry, date, and more. 1 credit per record. Use count='true' for free count-only query.

## Output

Returns a paginated list of M&A acquisition records matching the filters, each containing details such as acquiring company, target company, deal amount (in USD cents), industry, country, employee count, acquisition date, and discovery timestamp. When count='true' is used, returns only the total count of matching records at no credit cost.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer",
   "description": "Page number"
  },
  "limit": {
   "type": "integer",
   "description": "Results per page (max 100, default 20)"
  },
  "dateTo": {
   "type": "string",
   "description": "End date (YYYY-MM-DD)"
  },
  "search": {
   "type": "string",
   "description": "Search keyword"
  },
  "sort_by": {
   "type": "string",
   "description": "Sort field: occurred_at, discovered_at, amount, employee_count"
  },
  "dateFrom": {
   "type": "string",
   "description": "Start date (YYYY-MM-DD)"
  },
  "industry": {
   "type": "string",
   "description": "Comma-separated industries"
  },
  "countries": {
   "type": "string",
   "description": "Comma-separated country codes"
  },
  "amount_max": {
   "type": "integer",
   "description": "Maximum amount (USD cents)"
  },
  "amount_min": {
   "type": "integer",
   "description": "Minimum amount (USD cents)"
  },
  "sort_order": {
   "type": "string",
   "description": "asc or desc"
  },
  "date_preset": {
   "type": "string",
   "description": "Date shortcut: today, last_7d, last_30d, last_90d, this_month, etc."
  },
  "company_name": {
   "type": "string",
   "description": "Filter by company name"
  },
  "acquiring_company": {
   "type": "string",
   "description": "Filter by acquiring company"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bytemine-m-a-acquisition-signals-search-31e91cc6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
