Coinfeeds Crypto News Feed API

Coinfeeds API serves as a reliable source of news and information for the cryptocurrency ecosystem. It is trusted by major exchanges like Coinbase, innovative crypto projects like Arbitrum, and popular apps  like Magic Eden. It features a comprehensive Suite of Endpoints, tailored to meet the needs of diverse use-cases. Get real-time Information on all major crypto projects in form of latest news, tweets, podcasts and videos.

How to get an API Key

To try it out for yourself, you can get a personal API key by submitting your email below
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

/coins/list (GET)

Get list of coins supported by our API. This endpoint returns a list of dictionaries, each of which contains the id, name and symbol for a project. While fetching the data for a project, you can use both symbol or id as a query parameter by setting the flag symbol to true or false.


			
Sample CURL Request:
curl -H 'x-api-key: {api_key}' 'https://api.coinfeeds.io/coins/list?'

/coins/{coin_name}/news (GET)

Get news for a single coin by specifying it's id or symbol. We listen to thousands of news sources in real-time and provide you with a comprehensive newsfeed for every major cryptocurrency.


			
Sample CURL Request:
curl -H 'x-api-key: {api_key}' 'https://api.coinfeeds.io/coins/{coin_name}/news?symbol=true'

/coins/{coin_name}/tweets (GET)

Get `id` of recent tweets mentioning a coin. This endpoint provides you with a live feed of recent tweets mentioning a token, informing you of all the latest events for the project.


			
Sample CURL Request:
curl -H 'x-api-key: {api_key}' 'https://api.coinfeeds.io/coins/{coin_name}/tweets?symbol=true'

/coins/{coin_name}/podcasts (GET)

Get `id` of recent spotify podcasts for a coin. Coinfeeds sorts through every major crypto podcast and brings you a feed of all the episodes on spotify mentioning a particular token. This endpointmprovides an engaging feed helping you inform your users about a project.


			
Sample CURL Request:
curl -H 'x-api-key: {api_key}' 'https://api.coinfeeds.io/coins/{coin_name}/podcasts?symbol=true'

/coins/{coin_name}/videos (GET)

Get `id` of all the youtube videos for a particular coin. Youtube videos have long served as a great resource for crypto. Now you can get a feed of all the latest videos mentioning a particular token, thanks to this endpoint.


			
Sample CURL Request:
curl -H 'x-api-key: {api_key}' 'https://api.coinfeeds.io/coins/{coin_name}/videos?symbol=true'