# WorxAI Call Analytics

> WorxAI Call Analytics is a paid API for AI agents from worxai.tech, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves paid analytics data about API call activity on the WorxAI platform

## Facts

- Endpoint: GET https://worxai.tech/api/x402/v2/analytics
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/worxai-call-analytics-bf62efbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q6Gn2ZkUi2WsqVjMWGYUT

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 worxai-call-analytics-bf62efbf
```

Example prompt: Pull the latest call analytics from WorxAI so I can see the current API usage statistics and call volume on my account.

## When to prefer this

Use this endpoint when you need to retrieve call-level analytics or usage statistics specifically from the WorxAI platform, particularly for monitoring API activity, auditing usage, or tracking costs associated with x402-based API calls.

## Known failure modes

- Missing or invalid authentication may return 401/403
- Payment not processed results in 402 Payment Required
- No analytics data available for the queried period returns empty result
- Rate limiting may return 429 if called too frequently
- Invalid query parameters return 400 Bad Request

## How this service works

Live call volume and revenue analytics across all WorxAI x402 endpoints — total settled calls, USDC revenue, page/AI-visitor traffic, and a per-endpoint breakdown. Useful for agents benchmarking or auditing this API before committing to a larger dataset purchase. Analytics access costs $0.01 per call.

## Output

Returns analytics data about API calls made through the WorxAI platform, including call counts, usage metrics, and activity statistics relevant to the account or platform context.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/worxai-call-analytics-bf62efbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from worxai.tech](https://www.zero.xyz/host/worxai.tech/llms.txt)
