# Contact Brief & Outreach Intelligence Extractor

> Contact Brief & Outreach Intelligence Extractor is a paid API for AI agents from pay.sivut.co, paid per call via x402, $0.25/call, status down (last checked 2026-09-15).

Fetches a public URL and returns contact details, emails, headings, page title, and an AI-generated outreach angle for seller/contact intelligence.

## Facts

- Endpoint: GET https://pay.sivut.co/api/contact-brief
- Price: $0.25/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contact-brief-outreach-intelligence-extractor-a4ea09c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v_D19sfVPNPwCt3EnSL95

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 contact-brief-outreach-intelligence-extractor-a4ea09c8
```

Example prompt: Fetch https://www.acmecorp.com and pull out any visible email addresses, contact links, and give me a practical outreach angle I can use to reach out to them today.

## When to prefer this

Use this endpoint when you need to quickly extract publicly visible contact information (emails, contact links) and a ready-to-use outreach angle from any public URL, especially for sales prospecting, business development, or automated outreach workflows. Prefer it over generic scrapers when you want a structured contact brief with an AI-generated outreach suggestion in a single call.

## Known failure modes

- URL is not publicly accessible — returns non-200 HTTP status with error details
- URL is malformed or exceeds 2048 characters — input validation error
- Target page has no visible contact links or emails — returns empty arrays
- Payment not provided or invalid — HTTP 402 response requiring USDC payment on Base or Solana
- Timeout or slow target server — elapsedMs may be high or request may fail

## How this service works

Machine-payable x402 endpoints for public SEC crypto filing radar data, page markdown, and public x402 seller intelligence paid in USDC on Base or Solana.

## Output

Returns a JSON object with the page title, HTTP status, visible email addresses, contact links (href + text), page headings, a short description, an AI-generated outreach angle, content type, elapsed time, and a timestamp of when the check was performed.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "maxLength": 2048,
       "description": "Public http(s) URL to fetch and inspect."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "checkedAt",
      "target",
      "status",
      "title",
      "visibleEmails",
      "contactLinks",
      "headings",
      "outreachAngle"
     ],
     "properties": {
      "title": {
       "type": "string"
      },
      "paidBy": {
       "type": "string"
      },
      "status": {
       "type": "integer"
      },
      "target": {
       "type": "string"
      },
      "payment": {
       "type": "object",
       "properties": {
        "asset": {
         "type": "string"
        },
        "payTo": {
         "type": "string"
        },
        "network": {
         "type": "string"
        }
       }
      },
      "headings": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "checkedAt": {
       "type": "string"
      },
      "elapsedMs": {
       "type": "integer"
      },
      "contentType": {
       "type": "string"
      },
      "description": {
       "type": "string"
      },
      "contactLinks": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "href": {
          "type": "string"
         },
         "text": {
          "type": "string"
         }
        }
       }
      },
      "outreachAngle": {
       "type": "string"
      },
      "visibleEmails": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "title": "Example Domain",
  "paidBy": "x402",
  "status": 200,
  "target": "https://example.com/",
  "payment": {
   "asset": "USDC",
   "payTo": "0x9d39802b6B65D360bFdA92c8221dB3EbA8cbF9D7",
   "network": "eip155:8453"
  },
  "headings": [
   "Example Domain"
  ],
  "checkedAt": "2026-06-09T00:00:00.000Z",
  "elapsedMs": 250,
  "contentType": "text/html",
  "description": "",
  "contactLinks": [
   {
    "href": "https://www.iana.org/domains/example",
    "text": "More information"
   }
  ],
  "outreachAngle": "Contact path is visible. Practical angle: offer a same-day cleanup or conversion improvement around \"Example Domain\".",
  "visibleEmails": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contact-brief-outreach-intelligence-extractor-a4ea09c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.sivut.co](https://www.zero.xyz/host/pay.sivut.co/llms.txt)
