WealthVille — DeFi Liquidity Pool Scores API (Solana & EVM) Signals API

The Signals API from WealthVille — DeFi Liquidity Pool Scores API (Solana & EVM) — 2 operation(s) for signals.

Operations 2

GET /api/v1/signals/feed Published signals feed (JSON)
GET /api/v1/signals/{id} One published signal, including its realized outcome

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/wealthville-defi-liquidity-pool-scores-api-solana-evm-signals-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

wealthville-defi-liquidity-pool-scores-api-solana-evm-signals-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wealthville Public Data Signals API
  version: 1.0.0
  description: 'Public, read-only API for Wealthville pool scores (Enter/Hold/Exit + composite Wealthville Score, 0–100), the published-signal feed, and the live track record. Anonymous access is open at 60 requests/min per IP; partners can request an API key (sent as the `x-api-key` header) for a higher, per-key allowance. Methodology: https://www.wealthville.net/learn/wealthville-score'
  termsOfService: https://wealthville.net/terms
  contact:
    name: Wealthville Support
    url: https://www.wealthville.net/developers
    email: support@wealthville.net
  license:
    name: Proprietary — see Terms of Service
    url: https://wealthville.net/terms
servers:
- url: https://wealthville.net
security:
- {}
- ApiKeyAuth: []
tags:
- name: Signals
paths:
  /api/v1/signals/feed:
    get:
      summary: Published signals feed (JSON)
      description: Paginated feed of published LIVE signals with narrative, confidence, and branded image URLs.
      parameters:
      - name: limit
        in: query
        schema:
          type: integer
          minimum: 1
          maximum: 50
          default: 20
      - name: tier
        in: query
        schema:
          type: string
          enum:
          - free
          - premium
          default: free
      - name: ai_only
        in: query
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Signal list
          content:
            application/json:
              schema:
                type: object
                properties:
                  signals:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        generated_at:
                          type: string
                          format: date-time
                        signal_kind:
                          type: string
                        action:
                          type: string
                          example: ENTER
                        severity:
                          type: string
                        protocol:
                          type: string
                        pool_address:
                          type: string
                        pool_name:
                          type:
                          - string
                          - 'null'
                          description: Token pair, e.g. "SOL/USDC" (null when unresolvable)
                        chain:
                          type: string
                        confidence:
                          type:
                          - number
                          - 'null'
                        calibrated_confidence:
                          type:
                          - number
                          - 'null'
                        narrative:
                          type:
                          - string
                          - 'null'
                        risk_note:
                          type:
                          - string
                          - 'null'
                        reasons:
                          type: array
                          items:
                            type: string
                        image_url:
                          type:
                          - string
                          - 'null'
      tags:
      - Signals
  /api/v1/signals/{id}:
    get:
      summary: One published signal, including its realized outcome
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Signal with outcome label and t0 snapshot
        '404':
          description: Not found
      tags:
      - Signals
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Optional partner key — raises the rate limit and identifies the caller.