# organiccryptoyyc.com NFT Analytics

> organiccryptoyyc.com NFT Analytics is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Fetches NFT collection analytics and health scores via CoinGecko, given a collection slug or contract address and chain

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/nft/analytics
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/organiccryptoyyc-com-nft-analytics-ed17a89d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0yP0ecocG3v2WUoEI4oJs

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 organiccryptoyyc-com-nft-analytics-ed17a89d
```

Example prompt: Can you pull the NFT analytics and health score for the Azuki collection using its CoinGecko slug?

## When to prefer this

Use this endpoint when you need a quick, paid-per-call NFT collection health score and analytics verdict from CoinGecko without setting up your own CoinGecko API integration. It is ideal for agents that need on-demand NFT due diligence across Ethereum, Solana, BSC, and other EVM chains, settled in USDC via x402.

## Known failure modes

- Unknown or misspelled CoinGecko collection slug returns empty or error response
- Contract address not found on the specified chain returns no data
- Both collection and contractAddress omitted causes validation error
- Chain parameter ignored when collection slug is provided — may cause confusion
- CoinGecko data unavailable or rate-limited causes upstream failure
- Non-supported chain returns no results

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

Returns a JSON object with the data source (e.g. 'coingecko-nft-analytics'), a verdict string (e.g. 'established'), and a numeric healthScore (0–100), providing a quick assessment of an NFT collection's standing and activity.

## 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": {
      "chain": {
       "type": "string",
       "description": "Chain for contractAddress lookup, e.g. 'ethereum', 'solana' (ignored if collection is set)"
      },
      "collection": {
       "type": "string",
       "description": "CoinGecko NFT id/slug, e.g. 'azuki', 'degods', 'okay-bears' (primary lookup mode)"
      },
      "contractAddress": {
       "type": "string",
       "description": "NFT contract address -- use with chain instead of collection when the slug is unknown"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "coingecko-nft-analytics",
  "verdict": "established",
  "healthScore": 62
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/organiccryptoyyc-com-nft-analytics-ed17a89d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
