# Disruption Intelligence Ripple API - Company Names Search

> Disruption Intelligence Ripple API - Company Names Search is a paid API for AI agents from disruption.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search and list employer company names tracked in the disruption intelligence platform, with links to full company profiles and intelligence endpoints

## Facts

- Endpoint: GET https://disruption.forgemesh.io/companies/names
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disruption-intelligence-ripple-api-company-names-search-ddf84789
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xnndcaYedIquYeXLhCHlE

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 disruption-intelligence-ripple-api-company-names-search-ddf84789
```

Example prompt: Search the Ripple disruption intelligence database for employer companies named something like 'Acme Manufacturing' in California — return up to 25 matches so I can find the right company ID for deeper layoff and WARN filing analysis.

## When to prefer this

Use this endpoint when you need to discover or search for employer/company names within the Ripple disruption intelligence system — particularly to find company IDs needed to query deeper profile or intelligence endpoints. Prefer this over general web search when you need structured access to WARN-filing-linked employer records and want to navigate the Ripple API's company graph. Best as a first step before calling /companies/{id} or /companies/{id}/intelligence.

## Known failure modes

- No matching companies found for the given query — empty companies array returned
- State code invalid or unrecognized — may return 400 error or empty results
- Limit parameter exceeds maximum of 25 — capped or returns error
- Payment not received or USDC payment on Base fails — 402 response blocking access
- Query string too broad returns default 10 results without limit parameter set
- Company ID field may be empty in response requiring follow-up resolution

## How this service works

Returns matching company names with IDs plus links to their profile and intelligence endpoints — use it to resolve a search into specific companies before paying for deeper data

## Output

Returns a JSON object with a count of matched companies, a list of company name records each containing the company name, company ID, a profile endpoint path, and an intelligence endpoint path for further querying. Limited to a maximum of 25 results.

## 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": {
      "q": {
       "type": "string",
       "description": "Optional employer-name search query"
      },
      "limit": {
       "type": "number",
       "description": "Maximum company names to return (max 25, default 10)"
      },
      "state": {
       "type": "string",
       "description": "Optional 2-letter state code"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "product": "company_name_unlock",
  "companies": [
   {
    "name": "Example Employer Inc.",
    "company_id": "",
    "profile_endpoint": "/companies/{id}",
    "intelligence_endpoint": "/companies/{id}/intelligence"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disruption-intelligence-ripple-api-company-names-search-ddf84789/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from disruption.forgemesh.io](https://www.zero.xyz/host/disruption.forgemesh.io/llms.txt)
