The Coinfeeds API is used by the largest exchanges, crypto projects, and apps as a trusted source of news.
Our API is organized around REST. Our API has predictable resource-oriented URLs, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
The Coinfeeds API uses API key (x-api-key
) to authenticate the request. Use API key in the header for any request.
We strongly recommend using a secrets manager. Plain text files like dotenv lead to accidental costly leaks. Use Doppler for a developer friendly experience. AWS and Google Cloud have native solutions as well.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
Get list of coins supported
1{2"coins": [3{4"id": "string",5"symbol": "string",6"name": "string"7}8]9}
Get news for a list of coins.
Comma separated list of all the coins
Whether to use symbol or id for fetching data. If true
, then coins
should be a comma separated list of coin symbol
s else it should be a comma separated list of coin id
s.
1{2"newsFeed": [3{4"url": "string",5"title": "string",6"image": "string",7"summary": "string",8"newsSiteName": "string",9"newsSiteLogo": "string",10"publishDate": "number",11"language": "string"12}13]14}
Get news for a single coin
Name of the coin
Whether to use symbol or id for fetching data. If true
, then coin_name
should be the coin symbol
else it should be coin id
1{2"newsFeed": [3{4"url": "string",5"title": "string",6"image": "string",7"summary": "string",8"newsSiteName": "string",9"newsSiteLogo": "string",10"publishDate": "number",11"language": "string"12}13]14}
Get id
of all the tweets for a particular coin
Name of the coin
Whether to use symbol or id for fetching data. If true
, then coin_name
should be the coin symbol
else it should be coin id
1{2"tweet_ids": [3"string"4]5}
Get id
of all the spotify podcasts for a particular coin
Name of the coin
Whether to use symbol or id for fetching data. If true
, then coin_name
should be the coin symbol
else it should be coin id
1{2"podcast_ids": [3"string"4]5}
Get id
of all the youtube videos for a particular coin
Name of the coin
Whether to use symbol or id for fetching data. If true
, then coin_name
should be the coin symbol
else it should be coin id
1{2"video_ids": [3"string"4]5}