CryptoNews API Prices API

Delayed cryptocurrency pricing data

Operations 1

GET /ticker-price Get Delayed Ticker Prices #

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-prices-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-prices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CryptoNews Account Prices 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: Prices
  description: Delayed cryptocurrency pricing data
paths:
  /ticker-price:
    get:
      summary: Get Delayed Ticker Prices
      operationId: getTickerPrice
      description: Retrieve delayed cryptocurrency price data for one or more tickers. Supports 600+ coins. Prices are delayed (not real-time).
      tags:
      - Prices
      parameters:
      - name: tickers
        in: query
        description: Comma-separated list of ticker symbols to get prices for. If omitted, returns all available tickers.
        schema:
          type: string
          example: BTC,ETH,SOL,DOGE,XRP
      - name: token
        in: query
        required: true
        description: API authentication token.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with delayed ticker prices
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TickerPriceResponse'
        '401':
          description: Unauthorized - invalid or missing token
        '429':
          description: Rate limit exceeded
components:
  schemas:
    TickerPrice:
      type: object
      description: Delayed price data for a single cryptocurrency ticker
      properties:
        ticker:
          type: string
          description: Cryptocurrency ticker symbol
        price:
          type: number
          description: Current delayed price in USD
        price_change_percentage_24h:
          type: number
          description: Percentage price change over last 24 hours
        market_cap:
          type: number
          description: Market capitalization in USD
        volume_24h:
          type: number
          description: 24-hour trading volume in USD
    TickerPriceResponse:
      type: object
      description: Response containing delayed ticker prices
      properties:
        data:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/TickerPrice'
          description: Map of ticker symbol to price data
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: query
      name: token
      description: API key passed as a query parameter named 'token'