# TroptionsMint Intelligence API

> TroptionsMint Intelligence API is a paid API for AI agents from troptionsmint.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns intelligence data about the TroptionsMint Solana token launchpad ecosystem, including token catalog, exchange stats, identity, and ecosystem metadata.

## Facts

- Endpoint: GET https://troptionsmint.com/api/intelligence
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/troptionsmint-intelligence-api-15045432
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5R1MpAfgLkfqO6-U_Jgcr

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 troptionsmint-intelligence-api-15045432
```

Example prompt: Pull the latest intelligence from TroptionsMint — I want to see what tokens are in the catalog, current exchange stats, and which liquidity pools are active on their Solana launchpad.

## When to prefer this

Use this endpoint when you need a comprehensive intelligence snapshot of the TroptionsMint Solana ecosystem — including token catalog, pool data, exchange stats, and platform identity — in a single call. Prefer this over generic Solana RPC or Raydium APIs when you specifically need TroptionsMint-curated data about TROPTIONS, USDF, and associated SPL tokens.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Invalid HTTP method (only GET/HEAD/DELETE accepted) — returns 405 Method Not Allowed
- Service unavailable or Solana RPC issues — returns 503 with empty or partial data
- Malformed query parameters — returns 400 Bad Request
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

Launch SPL and Token-2022 tokens on Solana, trade TROPTIONS and USDF on Raydium, sell namespace roots, and earn affiliate commissions. Troptions Mint — Solana infrastructure for mint, pay, and liquidity.

## Output

Returns a JSON object with a schema version identifier ('troptions-intelligence-v1'), a token catalog (list of SPL/Token-2022 tokens and pool data), exchange statistics, legal identity info (e.g. TROPTIONSMINT LLC), ecosystem site and channel listings, and an array of insights. The 'success' boolean confirms a valid response.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "success",
   "schema"
  ],
  "properties": {
   "schema": {
    "type": "string"
   },
   "catalog": {
    "type": "object"
   },
   "success": {
    "type": "boolean"
   },
   "exchange": {
    "type": "object"
   },
   "identity": {
    "type": "object"
   },
   "insights": {
    "type": "array"
   },
   "ecosystem": {
    "type": "object"
   }
  }
 },
 "example": {
  "schema": "troptions-intelligence-v1",
  "catalog": {
   "pools": {},
   "tokens": []
  },
  "success": true,
  "exchange": {
   "stats": {}
  },
  "identity": {
   "legalName": "TROPTIONSMINT LLC"
  },
  "ecosystem": {
   "sites": [],
   "channels": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/troptionsmint-intelligence-api-15045432/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from troptionsmint.com](https://www.zero.xyz/host/troptionsmint.com/llms.txt)
