Meter Debug API

Debug utilities

Operations 2

POST /debug/tracers Create a tracer
POST /debug/storage-range Retrieve storage range

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/meter-debug-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

meter-debug-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Meterest Accounts Debug API
  description: 'RESTful API to access Meter.io


    [Project Home](https://github.com/meterio)

    '
  license:
    name: LGPL 3.0
    url: https://www.gnu.org/licenses/lgpl-3.0.en.html
  version: 1.2.2
servers:
- url: /
  description: local meter node
tags:
- name: Debug
  description: Debug utilities
paths:
  /debug/tracers:
    post:
      tags:
      - Debug
      summary: Create a tracer
      description: for a clause
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TracerOption'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
  /debug/storage-range:
    post:
      tags:
      - Debug
      summary: Retrieve storage range
      description: 'of the account with given address

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StorageRangeOption'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StorageRange'
components:
  schemas:
    TracerOption:
      properties:
        name:
          type: string
          enum:
          - 4byte
          - bigram
          - call
          - evmdis
          - noop
          - opcount
          - prestate
          - trigram
          - unigram
          description: 'name of tracer. Empty name stands for default struct logger tracer.

            '
          example: ''
        target:
          type: string
          description: 'the unified path of target to be traced.

            Currently, only clause is supported. Format:

            `blockID/(txIndex|txId)/clauseIndex`

            '
          example: 0x000dabb4d6f0a80ad7ad7cd0e07a1f20b546db0730d869d5ccb0dd2a16e7595b/0/0
    StorageRangeOption:
      properties:
        address:
          type: string
          description: 'address of account

            '
          example: '0xa4627036e2095eb71c2341054daa63577c062498'
        keyStart:
          type: string
          example: '0x0000000000000000000000000000000000000000000000000000000000000000'
        maxResult:
          type: number
          example: 10
        target:
          type: string
          example: 0x000edefb448685f9c72fc2b946980ef51d8d208bbaa4d3fdcf0c57d4847aca2e/0/0
    StorageRange:
      properties:
        nextKey:
          type: string
          example: null
        storage:
          type: object
          example:
            '0x33e423980c9b37d048bd5fadbd4a2aeb95146922045405accc2f468d0ef96988':
              key: '0x0000000000000000000000000000000000000000000000000000000000000001'
              value: '0x00000000000000000000000000000000000000000000000000000000000000c8'