# Orthogonal SignalBase Acquisitions

> Orthogonal SignalBase Acquisitions is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Fetch and filter M&A acquisition signals from a curated database, with support for date ranges, geography, deal size, industry, and company attributes.

## Facts

- Endpoint: GET https://x402.orthogonal.com/signalbase/signals/acquisitions
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-signalbase-acquisitions-c32a3941
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y-SSCRhhVWlMl8TzBwSVr

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 orthogonal-signalbase-acquisitions-c32a3941
```

Example prompt: Can you pull the latest acquisition signals from Orthogonal's SignalBase for US-based tech companies acquired in the last 30 days, with deal amounts between $5 million and $500 million, sorted by deal amount descending?

## When to prefer this

Use this endpoint when you need structured, filterable M&A acquisition deal data with rich company metadata including industry, geography, and deal size. It is ideal for business intelligence pipelines, competitive research, deal sourcing workflows, and monitoring acquisition activity in a specific market segment. Its pagination billing model makes it cost-efficient for multi-page queries on the same search. Prefer it over generic web scraping for M&A news when structured, queryable data is required.

## Known failure modes

- Invalid date_preset value returns a 400 validation error
- Unsupported currency ISO code may return no results or an error
- Exceeding max page limit (100) returns a validation error
- Changing filter parameters on a subsequent page starts a new billable request rather than continuing the prior one
- No results found for highly specific filter combinations returns an empty list

## How this service works

Fetch acquisition signals with filtering by date, country, deal amount, and company details. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of acquisition signal records, each containing the acquired company name, domain, industry, country, deal amount and currency, acquisition date, employee count, acquirer details, and category tags. Also includes pagination metadata and a billing requestId for free subsequent page calls on the same search.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "page": {
       "type": "integer",
       "description": "Page number For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "limit": {
       "type": "integer",
       "description": "Results per page (max: 100)"
      },
      "search": {
       "type": "string",
       "description": "Free-text search across company name & industry"
      },
      "sort_by": {
       "type": "string",
       "description": "Sort field: occurred_at, discovered_at, amount, employee_count"
      },
      "currency": {
       "type": "string",
       "description": "Filter by currency (ISO 4217 code)"
      },
      "industry": {
       "type": "string",
       "description": "Comma-separated exact industry names"
      },
      "countries": {
       "type": "string",
       "description": "Acquired company HQ. Comma-separated country codes"
      },
      "amount_max": {
       "type": "integer",
       "description": "Maximum acquisition amount in whole dollars"
      },
      "amount_min": {
       "type": "integer",
       "description": "Minimum acquisition amount in whole dollars"
      },
      "categories": {
       "type": "string",
       "description": "Pipe-separated company categories / industries"
      },
      "sort_order": {
       "type": "string",
       "description": "Sort direction: asc or desc"
      },
      "date_preset": {
       "type": "string",
       "example": "last_7d",
       "description": "Relative date shorthand; takes precedence over dateFrom/dateTo. Valid values: today, yesterday, last_7d, last_14d, last_30d, last_60d, last_90d, last_6m, last_1y, last_2y, this_week, this_month, this_quarter, this_year, last_week, last_month, last_quarter, last_year."
      },
      "company_name": {
       "type": "string",
       "description": "Search by acquired company name (partial match, fuzzy)"
      },
      "subcategories": {
       "type": "string",
       "description": "Comma-separa
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-signalbase-acquisitions-c32a3941/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)
