Exponential Agent API

The Agent API from Exponential — 4 operation(s) for agent.

Operations 4

GET /api/v1/agent/schema Data model — node types, edge types, grade letters. Call this first. #
GET /api/v1/agent/search Search pools/assets/protocols/chains. Lean teaser per hit (no grade). Capped at 10 results. #
GET /api/v1/agent/node/{nodeId} Full properties + grade (_riskTier) + riskBreakdown (rationale as Q&A pairs). #
GET /api/v1/agent/dependencies A pool's direct (1-hop) dependencies — edges and neighboring nodes, each stamped with lastUpdatedAt. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/exponential-agent-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

exponential-agent-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: YO Risk Graph Agent API
  version: '1.0'
  description: 'The YO Risk Graph (Exponential.fi Risk Ratings) exposed as HTTP APIs. Two surfaces: a free public Vault Exposure endpoint that returns a vault''s current collateral exposure, and a paid Agent API for full risk grading and dependency mapping across pools, assets, protocols and chains. The Agent API is monetized per-call via the x402 micropayment standard (v2) in USDC on Base mainnet (EIP-3009 transferWithAuthorization via Coinbase CDP; payer pays no gas). Paths and parameters are captured from the published docs; per-call prices are recorded as x-x402-price extensions.'
servers:
- url: https://risk.yo.xyz
  description: Production
tags:
- name: Agent
paths:
  /api/v1/agent/schema:
    get:
      operationId: agentSchema
      summary: Data model — node types, edge types, grade letters. Call this first.
      tags:
      - Agent
      x-x402-price: $0.001
      responses:
        '200':
          description: Graph schema
        '402':
          description: Payment Required — x402 invoice in PAYMENT-REQUIRED header
  /api/v1/agent/search:
    get:
      operationId: agentSearch
      summary: Search pools/assets/protocols/chains. Lean teaser per hit (no grade). Capped at 10 results.
      description: Always settles, even on a zero-result query, since the scan itself is the billable work.
      tags:
      - Agent
      x-x402-price: $0.001
      parameters:
      - name: q
        in: query
        required: true
        description: Asset address or protocol/asset name. No wildcards.
        schema:
          type: string
      - name: label
        in: query
        required: false
        description: Restrict to Pool, Asset, Protocol, or Chain
        schema:
          type: string
          enum:
          - Pool
          - Asset
          - Protocol
          - Chain
      - name: limit
        in: query
        required: false
        description: 1-10, default 10
        schema:
          type: integer
          minimum: 1
          maximum: 10
          default: 10
      - name: tvl
        in: query
        required: false
        description: Comparator, e.g. ">1000000"
        schema:
          type: string
      - name: grade
        in: query
        required: false
        description: Comparator over A-F, e.g. "<=B"
        schema:
          type: string
      responses:
        '200':
          description: Up to 10 teaser hits
        '402':
          description: Payment Required — x402 invoice
  /api/v1/agent/node/{nodeId}:
    get:
      operationId: agentNode
      summary: Full properties + grade (_riskTier) + riskBreakdown (rationale as Q&A pairs).
      tags:
      - Agent
      x-x402-price: $0.05
      parameters:
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Node with grade and rationale
        '402':
          description: Payment Required — x402 invoice
        '404':
          description: Not indexed (free)
  /api/v1/agent/dependencies:
    get:
      operationId: agentDependencies
      summary: A pool's direct (1-hop) dependencies — edges and neighboring nodes, each stamped with lastUpdatedAt.
      tags:
      - Agent
      x-x402-price: $1.00
      parameters:
      - name: nodeId
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 1-hop dependency subgraph
        '402':
          description: Payment Required — x402 invoice