# x402ads.io Agent Analytics

> x402ads.io Agent Analytics is a paid API for AI agents from x402ads.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns analytics on x402 agent activity and ad performance metrics (impressions, conversions, deposits) over a configurable time window.

## Facts

- Endpoint: GET https://x402ads.io/v1/agent/analytics
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402ads-io-bd62f812
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cUH-IJf0NBuzo0sbDf027

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 x402ads-io-bd62f812
```

Example prompt: Pull my x402ads agent analytics for the last 30 days — I want to see impressions, conversions, and any lifetime deposit or remaining balance stats.

## When to prefer this

Use this endpoint when you need performance analytics specifically tied to x402 agent ad activity — impressions, conversions, and deposit balances. Prefer this over generic ad analytics tools when working within the x402 payment and agent ecosystem on x402ads.io.

## Known failure modes

- Invalid period enum value returns a validation error
- Missing required input fields returns a 400 error
- Insufficient USDC balance or payment failure blocks the request
- No data available for the requested time window may return empty metric values
- Authentication or facilitator issues may cause 402 or 403 responses

## How this service works

Provides paid analytics for agent activity and performance.

## Output

Returns structured analytics data including impression counts, conversion counts, total deposited, and total remaining balance for the specified period (7d, 30d, or lifetime). Stock figures like total_deposited and total_remaining are always lifetime values regardless of period.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "period": "30d"
  }
 }
}
```

## 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": {
      "period": {
       "enum": [
        "7d",
        "30d",
        "lifetime"
       ],
       "type": "string",
       "default": "lifetime",
       "description": "Time window for impression and conversion counts. Stocks (total_deposited, total_remaining) are always lifetime."
      }
     }
    }
   },
   "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/x402ads-io-bd62f812/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402ads.io](https://www.zero.xyz/host/x402ads.io/llms.txt)
