# x402 Listing Visibility Rank Card

> x402 Listing Visibility Rank Card is a paid API for AI agents from x402.dailyelo.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns Bazaar discovery-ranking inputs as cohort percentiles for a given x402 domain, or catalog-wide distribution and invisible (zero-call) listings if no domain is specified.

## Facts

- Endpoint: GET https://x402.dailyelo.com/v1/listing/visibility
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-listing-visibility-rank-card-84a563c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hCVLJDnOGqrJhN8XTPVi7

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 x402-listing-visibility-rank-card-84a563c5
```

Example prompt: Can you pull up the Bazaar discovery ranking inputs for dailyelo.com — I want to see where it sits as cohort percentiles for call count, unique payers, staleness, and health compared to the rest of the x402 catalog?

## When to prefer this

Use this endpoint when you need to understand why an x402 listing is undiscovered or underselling — specifically to get percentile-ranked visibility signals (calls, payers, staleness, health) relative to the full Bazaar catalog. Prefer this over listing-doctor when you want descriptive diagnostic data rather than a verdict, or when you want catalog-wide distribution stats.

## Known failure modes

- Domain not found in Bazaar catalog — returns empty or no percentile data
- Invalid domain format — schema validation error
- No calls recorded for domain — appears in zero-call listings sample
- Service temporarily unavailable — upstream Bazaar snapshot data may be stale
- Payment failure — 402 not satisfied, no response returned

## How this service works

Why isn't my x402 listing getting discovered/sold? ?domain=you.com returns your Bazaar ranking inputs as cohort percentiles — last-30-day calls & unique payers, staleness, resource count, live health — so you can see where you sit vs the catalog. No args = cohort distribution + zero-call (invisible) listings. The visibility companion to listing-doctor. Descriptive percentiles, not a verdict.

## Output

A rank card showing the queried domain's last-30-day total calls, unique payers, staleness, resource count, and live health as percentiles within the x402 Bazaar cohort. Without a domain argument, returns the catalog-wide cohort distribution plus a sample of zero-call (invisible) listings.

## 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",
     "properties": {
      "domain": {
       "type": "string",
       "description": "your domain to get its visibility rank card"
      }
     },
     "description": "Why is my x402 listing not getting discovered/sold? Pass ?domain=you.com and get your Bazaar discovery-ranking inputs as cohort percentiles: last-30-day total calls & unique payers (higher = more discoverable), staleness, resource count, and live health/valid_x402. No args = catalog-wide cohort distribution + a sample of zero-call (invisible) listings. Descriptive percentiles, not a verdict."
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cohort": {
   "calls_p50": 5,
   "calls_p90": 66,
   "domain_count": 1621,
   "dead_listings_zero_calls": 153
  },
  "domain": "your-service.example.com",
  "schema": "listingvisibility/v1",
  "visibility": {
   "health": "healthy",
   "valid_x402": true,
   "resource_count": 3,
   "staleness_days": 0.6,
   "l30_total_calls": 10,
   "calls_percentile": 0.63,
   "l30_unique_payers": 2,
   "payers_percentile": 0.55
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-listing-visibility-rank-card-84a563c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.dailyelo.com](https://www.zero.xyz/host/x402.dailyelo.com/llms.txt)
