# ScopeAPI Company Research & Intelligence

> ScopeAPI Company Research & Intelligence is a paid API for AI agents from scopeapi.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Researches a company by name, domain, or ticker and returns structured findings with cited sources

## Facts

- Endpoint: POST https://scopeapi.dev/company-research
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-company-research-intelligence-931e292f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ayaJqzQzbp_zfLV6V1g4d

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 scopeapi-company-research-intelligence-931e292f -d '<json body>'
```

Example prompt: Research Stripe for me — find out what they do, who their key competitors are, their funding history, and recent news. Their domain is stripe.com and ticker is not public, so focus on their business model and market position.

## When to prefer this

Use this endpoint when you need structured, multi-source company intelligence rather than a raw web search. Ideal for due diligence, sales prep, competitive research, or any workflow requiring synthesized facts about a business with cited sources. Prefer over generic web search when you want organized findings rather than raw HTML or snippets, and prefer over comparison endpoints when you only need data on a single company.

## Known failure modes

- Company name is ambiguous or too generic — returns low-confidence or mixed results
- Domain or ticker does not match a real company — empty findings array
- Company is very obscure or has minimal web presence — sparse findings
- Network or upstream research failure — non-ok status returned
- Rate limit or payment failure — 402 response if x402 payment not processed

## How this service works

Research a company and return company intelligence using current public sources. Covers business facts, products, competitors, competitor analysis, recent developments, risks, positioning, and citations.

## Output

Returns a JSON object with status, an array of sources (URLs or references used), and an array of findings (structured intelligence items about the company such as description, products, funding, leadership, competitors, and recent news).

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "company": {
       "type": "string"
      },
      "domain": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "focus": {
       "type": "string"
      }
     },
     "required": [
      "company"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "ok",
  "sources": [],
  "findings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-company-research-intelligence-931e292f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapi.dev](https://www.zero.xyz/host/scopeapi.dev/llms.txt)
