# scopeapi.dev Website & Business Research

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

Performs AI-powered research on a website or business by URL, returning structured findings and sources

## Facts

- Endpoint: POST https://scopeapi.dev/website-research
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-dev-website-business-research-4a54a32a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r46eVtMJPrYgBDsJ0E8oL

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-dev-website-business-research-4a54a32a -d '<json body>'
```

Example prompt: Can you research the website stripe.com and give me a full breakdown of what they do, their products, and how they position themselves as a business?

## When to prefer this

Choose this endpoint when you need structured, sourced research about a specific website or business based on its URL — especially when you want findings with cited sources rather than a raw scrape. Prefer it over generic web search when the user has a specific domain in mind and wants business intelligence (who they are, what they sell, how they operate). It's more targeted than deep multi-source research and more structured than a plain web answer.

## Known failure modes

- Invalid or unreachable URL returns an error status
- Paywalled or login-gated websites may return incomplete findings
- Very sparse websites may yield few or no findings
- Rate limiting or payment failures result in 402 responses
- Malformed input object missing required fields returns a validation error

## How this service works

Website & Business Research

## Output

Returns a JSON object with a status field, a list of sources (URLs or references consulted), and an array of findings — structured research results about the website and business including summaries, key facts, and evidence extracted from the site.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "focus": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## 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-dev-website-business-research-4a54a32a/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)
