Maverick Protocol Latest API

The Latest API from Maverick Protocol — 1 operation(s) for latest.

Operations 1

GET /api/latest/tickers Latest 24h market tickers #

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/maverick-protocol-latest-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

maverick-protocol-latest-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Maverick V2 Data Latest API
  version: '2.0'
  description: Read-only market-data API for the Maverick Protocol V2 decentralized exchange (AMM). Returns 24-hour pricing and volume statistics for every market pair on a given chain. Documented at https://docs.mav.xyz/technical-reference/maverick-v2/v2-api-documentation and served from https://v2-api.mav.xyz. Public, no authentication.
  contact:
    name: Maverick Protocol
    url: https://www.mav.xyz/
  license:
    name: See Maverick Protocol Terms of Service
    url: https://www.mav.xyz/
servers:
- url: https://v2-api.mav.xyz
  description: Maverick V2 hosted data API
tags:
- name: Latest
paths:
  /api/latest/tickers:
    get:
      operationId: getTickers
      summary: Latest 24h market tickers
      description: Market-related statistics for all markets on the specified chain for the last 24 hours. Response schema follows the standard exchange "tickers" convention (base/target currency contract addresses, last price, volumes, pool id, USD liquidity).
      parameters:
      - name: chainId
        in: query
        required: true
        description: EVM chain id in decimal (e.g. 1 = Ethereum mainnet, 8453 = Base). Mandatory.
        schema:
          type: integer
          example: 1
      responses:
        '200':
          description: Array of market tickers for the requested chain.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Ticker'
      tags:
      - Latest
components:
  schemas:
    Ticker:
      type: object
      description: 24-hour market statistics for a single Maverick V2 pool/pair.
      properties:
        ticker_id:
          type: string
          description: Identifier of a ticker with delimiter separating the base and target contract addresses.
        base_currency:
          type: string
          description: Contract address of the base cryptoasset.
        target_currency:
          type: string
          description: Contract address of the target cryptoasset.
        last_price:
          type: string
          description: Last transacted price of base currency in terms of target currency.
        base_volume:
          type: string
          description: 24-hour trading volume for the pair, denominated in base.
        target_volume:
          type: string
          description: 24-hour trading volume for the pair, denominated in target.
        pool_id:
          type: string
          description: Pool/pair address or unique identifier.
        liquidity_in_usd:
          type: string
          description: Pool liquidity in USD.