# APIAcre Web Tech Fingerprint

> APIAcre Web Tech Fingerprint is a paid API for AI agents from apiacre.com, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-15).

Detects common site technologies (CMS, frameworks, analytics, CDN, etc.) from public signals for a given URL.

## Facts

- Endpoint: POST https://apiacre.com/v1/web/tech-fingerprint
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apiacre-web-tech-fingerprint-c4620482
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bhKVseSx2xr1Gfi-GZImV

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 apiacre-web-tech-fingerprint-c4620482 -d '<json body>'
```

Example prompt: Can you fingerprint the tech stack on stripe.com and tell me what CMS, frameworks, analytics tools, and CDN they're using based on public signals?

## When to prefer this

Choose this endpoint when you need to identify the technology stack of any public website without requiring access to its source code or server. It is well-suited for competitive intelligence, lead enrichment, pre-engagement technical audits, and SEO tooling. Prefer it over manual inspection or browser extensions when you need programmatic, structured results at scale via an API call.

## Known failure modes

- URL is unreachable or returns non-200 status — endpoint may return an error or empty result
- Private/intranet URLs cannot be fingerprinted from public signals
- Heavily obfuscated or minimal sites may return few or no detected technologies
- Invalid or malformed URL input returns a validation error
- Rate limiting or timeout if the target site is slow to respond

## How this service works

Identify frameworks, analytics, CDNs, servers, and other website technologies from public response signals.

## Output

Returns a structured list of detected technologies for the given website URL, categorized by type (e.g. CMS, JavaScript framework, CDN, analytics, advertising), detected from publicly observable signals such as HTTP headers, HTML markup, and script sources.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "title": "Url",
   "format": "uri",
   "maxLength": 2083,
   "minLength": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "url": "https://example.com/",
   "server": "cloudflare",
   "poweredBy": null,
   "scriptHosts": [],
   "technologies": [
    "Cloudflare"
   ]
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "web.tech-fingerprint",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apiacre-web-tech-fingerprint-c4620482/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
