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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/hegic-accounts-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
openapi: 3.2.0
info:
title: Arbiscan Token API - HEGIC Token Accounts API
description: 'Block explorer API for querying Hegic (HEGIC) token data on Arbitrum One, including token supply, holder information, transfer events, and contract interactions. The HEGIC token contract address on Arbitrum is 0x431402e8b9de9aa016c743880e04e517074d8cec. All endpoints require an API key obtained from https://arbiscan.io/myapikey.
'
version: 1.0.0
contact:
name: Arbiscan Support
url: https://arbiscan.io
license:
name: Arbiscan Terms of Service
url: https://arbiscan.io/terms
servers:
- url: https://api.arbiscan.io/api
description: Arbiscan API for Arbitrum One
security:
- ApiKeyQuery: []
tags:
- name: Accounts
description: Account and holder information
paths:
/token-balance:
get:
summary: Get ERC-20 token account balance
description: 'Returns the ERC-20 token balance of a specific address for the HEGIC token contract on Arbitrum One.
'
operationId: getTokenBalance
tags:
- Accounts
parameters:
- name: module
in: query
required: true
schema:
type: string
enum:
- account
example: account
- name: action
in: query
required: true
schema:
type: string
enum:
- tokenbalance
example: tokenbalance
- name: contractaddress
in: query
required: true
description: HEGIC token contract address on Arbitrum
schema:
type: string
example: '0x431402e8b9de9aa016c743880e04e517074d8cec'
- name: address
in: query
required: true
description: Wallet address to query
schema:
type: string
example: '0x000000000000000000000000000000000000dead'
- name: tag
in: query
required: false
description: Block tag (latest or a specific block number)
schema:
type: string
default: latest
example: latest
- name: apikey
in: query
required: true
description: Your Arbiscan API key
schema:
type: string
example: YourApiKeyToken
responses:
'200':
description: Token balance response
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
components:
schemas:
ApiResponse:
type: object
properties:
status:
type: string
description: 1 for success, 0 for error
example: '1'
message:
type: string
description: Response message
example: OK
result:
description: Response payload (varies by endpoint)
securitySchemes:
ApiKeyQuery:
type: apiKey
in: query
name: apikey
externalDocs:
description: Arbiscan API Documentation
url: https://docs.arbiscan.io