# Syra RISE Market Intelligence

> Syra RISE Market Intelligence is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Fetches RISE market intel, market listings, or agent targets from Syra's Solana-native financial infrastructure for AI agents

## Facts

- Endpoint: GET https://api.syraa.fun/rise
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-rise-market-intelligence-2e5cf978
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BtoWYt__RB5Z8pcScE9Sf

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 syra-rise-market-intelligence-2e5cf978
```

Example prompt: Pull the RISE intel view from Syra for up to 50 markets, filtering targets to only the ready tier — I want to see which markets my agent should act on now.

## When to prefer this

Use this endpoint when an AI agent needs real-time RISE protocol market intelligence on the Solana ecosystem, particularly for discovering investable markets, filtering agent-ready targets by tier, or retrieving focused data on a specific mint. Prefer this over generic market data endpoints when operating within Syra's five-pillar agent finance stack (Earn, Treasury, Invest, Spend, Grow).

## Known failure modes

- Payment not included or insufficient — 402 response requiring x402 payment of 0.1 USDC
- Invalid mint address provided — may return empty or error response
- Invalid tier value (not 'ready' or 'watch') — may be ignored or cause error
- Invalid view value — defaults to intel view
- Limit exceeds 100 — clamped or rejected
- Service unavailable — 5xx response

## How this service works

Machine money for agents on Solana: live x402 pay-per-call APIs, MCP tools, typed SDK. Earn · Treasury · Invest · Spend · Grow.

## Output

Returns a JSON object with ok and paid flags, along with RISE market intelligence data — either a general intel summary, a list of markets, or filtered agent targets depending on the view parameter selected. Data includes market metrics, mint addresses, and tier classifications.

## 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",
     "queryParams": {
      "mint": {
       "type": "string",
       "required": false,
       "description": "Optional single RISE market mint for focused intel"
      },
      "tier": {
       "type": "string",
       "required": false,
       "description": "Agent tier filter for targets: ready | watch"
      },
      "view": {
       "type": "string",
       "required": false,
       "description": "View selector: intel | markets | targets (default intel)"
      },
      "limit": {
       "type": "integer",
       "required": false,
       "description": "Max markets/targets to return (default 25, max 100)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/syra-rise-market-intelligence-2e5cf978/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syraa.fun](https://www.zero.xyz/host/api.syraa.fun/llms.txt)
