# Strale Prospect Profile

> Strale Prospect Profile is a paid API for AI agents from api.strale.io, paid per call via x402, $0.5832/call, status unknown (last checked 2026-09-14).

Generates a structured company prospect profile including company data, compliance checks, and financial validation given a company URL and name.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/prospect-profile
- Price: $0.5832/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-prospect-profile-45e07b2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D3-uHRE06teorQxISQNPX

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 strale-prospect-profile-45e07b2a -d '<json body>'
```

Example prompt: Pull a Strale prospect profile for Stripe — their website is stripe.com — I need their company data, compliance status, and financial validation before we reach out to them as a potential partner.

## When to prefer this

Choose this endpoint when you need a comprehensive, auditable company profile combining firmographic data, compliance checks, and financial validation in a single call. Prefer it over generic web search when you need structured, machine-readable output with an audit trail, especially for B2B sales prospecting or due diligence workflows.

## Known failure modes

- Company not found for given URL or name — returns error or empty profile
- Invalid or unreachable URL — returns validation error
- Unknown ticker or CIK — returns not found error
- Compliance data unavailable for private companies — partial results
- Network or upstream data source unavailable — returns 5xx error

## How this service works

Everything your sales agent researches before a call: SEC data, tech stack, web presence, and domain credibility — delivered in seconds.

## Output

A structured JSON object containing the company's profile data, compliance check results, financial validation findings, and an audit trail. Includes trust and quality signals relevant to business decisions.

## Example request

```json
{
 "url": "https://stripe.com",
 "company": "Stripe"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company",
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Company website URL"
  },
  "company": {
   "type": "string",
   "description": "Company name, CIK, or ticker"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-prospect-profile-45e07b2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
