Covalent Base API

Blocks, gas prices, log events, address resolution, chain status.

Operations 9

GET /v1/{chainName}/block_v2/{blockHeight}/ Get A Block #
GET /v1/{chainName}/block_v2/{startDate}/{endDate}/ Get Block Heights #
GET /v1/chains/ Get All Chains #
GET /v1/chains/status/ Get All Chain Statuses #
GET /v1/{chainName}/event/topics/{topicHash}/ Get Log Events By Topic Hash(es) #
GET /v1/{chainName}/events/address/{contractAddress}/ Get Log Events By Contract Address #
GET /v1/{chainName}/events/ Get Logs #
GET /v1/{chainName}/gas_prices/{eventType}/ Get Gas Prices #
GET /v1/{chainName}/address/{addressName}/resolve_address/ Get Resolved Address For Registered Address #

Documentation

📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/balance-service
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/transactions-service
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/nft-service
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/base-service
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/cross-chain-activity
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/security-service
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/pricing-service
📖
Documentation
https://goldrush.dev/docs/api-reference/streaming-api/
📖
Documentation
https://goldrush.dev/docs/api-reference/pipeline-api/
📖
Documentation
https://goldrush.dev/docs/api-reference/pipeline-api/quickstart
📖
Documentation
https://goldrush.dev/docs/api-reference/pipeline-api/architecture
📖
Documentation
https://goldrush.dev/docs/api-reference/pipeline-api/destinations
📖
Documentation
https://goldrush.dev/docs/api-reference/pipeline-api/abi-decoding
📖
Documentation
https://goldrush.dev/docs/api-reference/hyperliquid/info-api/
📖
Documentation
https://goldrush.dev/docs/api-reference/hyperliquid/info-api/migration-guide
📖
Documentation
https://goldrush.dev/docs/api-reference/hyperliquid/info-api/limits
📖
Documentation
https://goldrush.dev/docs/api-reference/foundational-api/x402

Specifications

Schemas & Data

Other Resources

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/covalent-base-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

covalent-base-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GoldRush Foundational Base API
  description: 'Structured historical blockchain data across 100+ chains via REST. Resource families include Balances (native, ERC20, ERC721, ERC1155, historical portfolios, token holders), Transactions (v3 paginated, time-bucketed, by-block), NFTs, Base service (blocks, logs, gas prices, address resolution), Cross-Chain Activity, Pricing, and Security (token approvals).

    '
  version: v1
  contact:
    name: GoldRush Support
    url: https://goldrush.dev/support/
  license:
    name: Covalent Terms of Service
    url: https://www.covalenthq.com/terms-of-service/
servers:
- url: https://api.covalenthq.com
  description: GoldRush production server
security:
- BearerAuth: []
tags:
- name: Base
  description: Blocks, gas prices, log events, address resolution, chain status.
paths:
  /v1/{chainName}/block_v2/{blockHeight}/:
    get:
      summary: Get A Block
      operationId: getBlock
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      - name: blockHeight
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /v1/{chainName}/block_v2/{startDate}/{endDate}/:
    get:
      summary: Get Block Heights
      operationId: getBlockHeights
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      - name: startDate
        in: path
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: path
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: OK
  /v1/chains/:
    get:
      summary: Get All Chains
      operationId: getAllChains
      tags:
      - Base
      responses:
        '200':
          description: OK
  /v1/chains/status/:
    get:
      summary: Get All Chain Statuses
      operationId: getAllChainStatuses
      tags:
      - Base
      responses:
        '200':
          description: OK
  /v1/{chainName}/event/topics/{topicHash}/:
    get:
      summary: Get Log Events By Topic Hash(es)
      operationId: getLogEventsByTopicHash
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      - name: topicHash
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /v1/{chainName}/events/address/{contractAddress}/:
    get:
      summary: Get Log Events By Contract Address
      operationId: getLogEventsByContractAddress
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      - name: contractAddress
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /v1/{chainName}/events/:
    get:
      summary: Get Logs
      operationId: getLogs
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      responses:
        '200':
          description: OK
  /v1/{chainName}/gas_prices/{eventType}/:
    get:
      summary: Get Gas Prices
      operationId: getGasPrices
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      - name: eventType
        in: path
        required: true
        schema:
          type: string
          enum:
          - erc20transfers
          - nativetokens
          - uniswapv3
      responses:
        '200':
          description: OK
  /v1/{chainName}/address/{addressName}/resolve_address/:
    get:
      summary: Get Resolved Address For Registered Address
      operationId: getResolvedAddress
      tags:
      - Base
      parameters:
      - $ref: '#/components/parameters/ChainName'
      - name: addressName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
components:
  parameters:
    ChainName:
      name: chainName
      in: path
      required: true
      description: Chain slug (e.g., `eth-mainnet`, `base-mainnet`, `solana-mainnet`, `polygon-mainnet`) or numeric chain ID.
      schema:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'GoldRush API key, sent as `Authorization: Bearer <key>`.'