# AgentBit Company Research Dossier

> AgentBit Company Research Dossier is a paid API for AI agents from agentbit.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns a comprehensive due-diligence dossier for a company or domain, combining web-signal enrichment, live news search, agent-readiness scoring, and technical risk indicators in a single normalized JSON response.

## Facts

- Endpoint: POST https://agentbit.app/v1/company/research
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-company-research-dossier-6f49477d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pFHg4dMXy29PK_G59QGRZ

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 agentbit-company-research-dossier-6f49477d -d '<json body>'
```

Example prompt: Can you run a full due-diligence dossier on stripe.com — I need their tech stack, recent news, social profiles, and any DNS or SSL risk flags before we onboard them as a vendor?

## When to prefer this

Choose this endpoint when you need a consolidated company profile in a single call rather than orchestrating multiple separate lookups (WHOIS, news search, tech detection, SSL check). Ideal for vendor onboarding workflows, lead enrichment pipelines, or investment due diligence where speed and breadth matter more than deep specialist data on any single dimension.

## Known failure modes

- Unknown domain returns empty enrichment fields with partial results
- Domain with no web presence may yield minimal technology or social signals
- Live news search may return zero results for obscure companies
- Invalid domain format returns a 400 validation error
- DNS lookup failures may leave risk indicators incomplete
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

One-call company due-diligence dossier: web-signal enrichment (technologies, socials, mail), recent news from live web search, website agent-readiness score and technical risk indicators (DNS, SSL, domain age). Normalized JSON — replaces 4–6 separate calls when researching a vendor, lead or counterparty.

## Output

A normalized JSON object containing: detected technology stack (CMS, analytics, frameworks), social media profile links, mail/MX signal data, recent news articles from live web search with titles/snippets/dates, an AI agent-readiness score for the website, and technical risk indicators including DNS resolution status, SSL certificate validity, and domain age.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string"
  },
  "company_name": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": {
   "risk_level": "low",
   "risk_score": 5
  },
  "company": {
   "company_name": "Stripe",
   "technologies": [
    "react"
   ]
  },
  "subject": {
   "domain": "stripe.com"
  },
  "recent_news": [
   {
    "url": "https://…",
    "title": "Stripe launches…"
   }
  ],
  "website_signals": {
   "score": 85,
   "issues": {}
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-company-research-dossier-6f49477d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
