# AnswerPool M&A Events

> AnswerPool M&A Events is a paid API for AI agents from answerpool.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a paginated, market-wide feed of SEC 8-K filings reporting completed acquisitions, dispositions, or changes of control (Items 2.01 and 5.01) with company metadata and filing links.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/8k/ma
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-m-a-events-ff0fda98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6qUjNSh2a9V4Pc4hLgdQt

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 answerpool-m-a-events-ff0fda98
```

Example prompt: Pull the last 50 completed M&A events from SEC 8-K filings — acquisitions, dispositions, and changes of control — filed since August 17, 2026, and show me the company names, tickers, and filing links.

## When to prefer this

Choose this endpoint when you need unfiltered, market-wide coverage of completed M&A transactions (Items 2.01 and 5.01) from SEC 8-K filings without pre-filtering by company or sector. It is ideal for deal-monitoring workflows that require a continuous, paginated feed of all acquisition, disposition, and change-of-control events across the entire market. Prefer it over full-text EDGAR search when you want structured, pre-classified event data with tickers and direct filing links rather than raw filing matches.

## Known failure modes

- Invalid since value (non-ISO string) returns a 422 validation error
- limit outside 1-200 range returns a 400 or 422 error
- No events in the requested window returns count=0 and empty events array
- Payment not included or invalid x402 payment returns 402 Payment Required
- Rate limiting or service unavailability returns 429 or 503

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

A JSON object containing an as_of timestamp, a since cursor, the total count of matching events, and an array of event objects. Each event includes a unique event_id, SEC accession number, CIK, ticker symbol, company name, form type, event_type classification, occurred_at timestamp, flags array, relevance score, a payload with deal-specific details, and a direct URL to the SEC filing. Also includes index_started_at and a next_cursor for pagination.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "title": "WindowIn",
     "properties": {
      "limit": {
       "type": "integer",
       "title": "Limit",
       "default": 50,
       "maximum": 200,
       "minimum": 1,
       "description": "Maximum 8-K events of this view's event type returned, newest first; 1 to 200, default 50."
      },
      "since": {
       "anyOf": [
        {
         "type": "string",
         "maxLength": 32
        },
        {
         "type": "null"
        }
       ],
       "title": "Since",
       "default": null,
       "description": "Earliest event time, ISO 8601 date or timestamp (e.g. 2026-08-01 or 2026-08-01T00:00:00Z); UTC if no offset, capped at 90 days back. Omit for this view's own default window of 7 to 30 recent days."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 0,
  "since": "2026-08-17T00:00:00",
  "events": [],
  "next_cursor": "2026-08-17T00:00:00",
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-m-a-events-ff0fda98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
