CryptoNews API Account API

Account and reference data

Operations 1

GET /account/tickersdbv2 Get Supported Tickers Database #

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/cryptonews-account-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

cryptonews-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CryptoNews Account API
  description: REST API aggregating cryptocurrency news, Bitcoin sentiment analysis, and crypto market news from 50+ sources with filtering by currency and time range. Provides AI-powered sentiment analysis, delayed pricing for 600+ coins, whale transaction tracking, and historical data from December 2020.
  version: '1'
  contact:
    url: https://cryptonews-api.com/
  termsOfService: https://cryptonews-api.com/termsandconditions
servers:
- url: https://cryptonews-api.com/api/v1
  description: Production server
security:
- tokenAuth: []
tags:
- name: Account
  description: Account and reference data
paths:
  /account/tickersdbv2:
    get:
      summary: Get Supported Tickers Database
      operationId: getSupportedTickers
      description: Retrieve the full database of supported cryptocurrency tickers available in the API.
      tags:
      - Account
      parameters:
      - name: token
        in: query
        required: true
        description: API authentication token.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with supported tickers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TickersDbResponse'
        '401':
          description: Unauthorized - invalid or missing token
        '429':
          description: Rate limit exceeded
components:
  schemas:
    TickersDbResponse:
      type: object
      description: Response containing the supported tickers database
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TickerInfo'
          description: List of all supported cryptocurrency tickers
    TickerInfo:
      type: object
      description: Information about a supported cryptocurrency ticker
      properties:
        ticker:
          type: string
          description: Cryptocurrency ticker symbol
        name:
          type: string
          description: Full name of the cryptocurrency
        logo:
          type: string
          format: uri
          description: URL of the cryptocurrency logo
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: query
      name: token
      description: API key passed as a query parameter named 'token'