# AutoScrape Website Enrichment API

> AutoScrape Website Enrichment API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Enriches one or more domains with company name, tech stack, emails, social profiles, and HTTP status in a single call

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/website-enrichment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-website-enrichment-api-8ac85473
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W66f_wePrIlQIUVDdRWdw

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 autoscrape-website-enrichment-api-8ac85473
```

Example prompt: Can you enrich stripe.com for me — I want to see the company name, tech stack, email addresses, and LinkedIn profile associated with that domain?

## When to prefer this

Choose this endpoint when you need fast, single-call company and website metadata enrichment (tech stack, emails, LinkedIn, company name) for one to five domains without building a custom scraper. It is ideal for sales prospecting, competitive research, and lead enrichment workflows where breadth of signals per domain matters more than deep crawling. Prefer alternatives if you need more than 5 domains per call, require phone numbers or firmographic data, or need real-time crawling of dynamic JavaScript-heavy pages.

## Known failure modes

- Invalid or unreachable domain returns empty results or error
- maxResults cap of 5 per request — larger lists are silently truncated
- Private or parked domains may return minimal data (empty emails, no company name)
- Rate limiting or payment failure returns 402 with payment required headers
- Domains with heavy bot-protection may return incomplete tech stack data

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count and a results array; each result contains the domain, company name, detected tech stack (array of technology names), email addresses found, LinkedIn company URL, and HTTP status code of the homepage.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "domain": "stripe.com",
    "emails": [],
    "techStack": [
     "React"
    ],
    "statusCode": 200,
    "companyName": "Stripe",
    "socialLinkedIn": "https://www.linkedin.com/company/stripe/"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-website-enrichment-api-8ac85473/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
