# x402-factory Form 25/15 Delisting & Deregistration Watch Feed

> x402-factory Form 25/15 Delisting & Deregistration Watch Feed is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a rolling feed of newly filed SEC Form 25/15 delisting and deregistration filings with metadata and direct EDGAR links.

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/watch/delisting-watch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-form-25-15-delisting-deregistration-watch-feed-be09c137
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7EJKuoqvVva8hckpMU5nq

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 x402-factory-form-25-15-delisting-deregistration-watch-feed-be09c137
```

Example prompt: Pull the latest Form 25/15 delisting and deregistration filings from EDGAR — give me the 20 most recent ones with the company name, ticker, filing date, and a link to each document.

## When to prefer this

Use this endpoint when you need a real-time or near-real-time feed of Form 25/15 SEC delisting and deregistration filings without needing to parse raw EDGAR full-text submissions. Ideal for compliance monitoring, portfolio risk scanning, or event-driven trading research. Prefer this over direct EDGAR full-text search when you only need metadata and links, not deep document parsing.

## Known failure modes

- Limit parameter out of range (must be 1-50) returns a 400 validation error
- EDGAR upstream unavailability may result in stale or empty filings array
- Missing or malformed required 'type' or 'method' fields in input yields a 400 error
- No filings in feed if no Form 25/15 documents were recently submitted to EDGAR

## How this service works

New Form 25/15 delisting and deregistration filings feed (metadata + links) — Rolling feed of newly filed Form 25/15 delisting and deregistration documents: filer, filing date, accession number, and direct EDGAR links — metadata only, no deep parse. The watch feed for agents tracking Form 25/15 delisting and deregistration activity.

## Output

Returns a JSON object with a 'watch' label, a list of form types covered, and an array of filing records. Each record includes the company name, ticker symbol (if available), form type, filing date (ISO string), a short snippet, and a direct URL to the EDGAR filing document. Also includes a metadata object with pagination or feed context.

## 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",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "watch",
        "forms",
        "filings"
       ],
       "properties": {
        "forms": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "watch": {
         "type": "string"
        },
        "filings": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "company",
           "form",
           "filed_at",
           "snippet",
           "url"
          ],
          "properties": {
           "url": {
            "type": "string"
           },
           "form": {
            "type": "string"
           },
           "ticker": {
            "type": "string"
           },
           "company": {
            "type": "string"
           },
           "snippet": {
            "type": "string"
           },
           "filed_at": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "forms": [
    "25",
    "15-12B",
    "15-12G"
   ],
   "watch": "delisting-watch",
   "filings": [
    {
     "url": "https://www.sec.gov/Archives/edgar/data/1657853/000165785326000097/htz-form25.htm",
     "form": "25",
     "ticker": "HTZ",
     "company": "Hertz Global Holdings, Inc.",
     "snippet": "Notification of removal from listing and registration under Section 12(b)…",
     "filed_at": "2026-07-10"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.edgar-watch.delisting-watch",
   "sources": [
    "sec-edgar"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/edgar/watch/delisting-watch",
   "data_mode": "live",
   "freshness": "delayed_15m",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.077Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-form-25-15-delisting-deregistration-watch-feed-be09c137/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
