Skip to main content
POST
/
api
/
coingecko
/
coins
/coingecko/coins
curl --request POST \
  --url https://api.anysite.io/api/coingecko/coins \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "coin": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "symbol": "<string>",
    "name": "<string>",
    "@type": "@coingecko_coin",
    "alias": "<string>",
    "image": "<string>",
    "description": "<string>",
    "categories": [],
    "market_cap_rank": 123,
    "hashing_algorithm": "<string>",
    "genesis_date": "<string>",
    "country_origin": "<string>",
    "sentiment_votes_up_percentage": 123,
    "sentiment_votes_down_percentage": 123,
    "watchlist_portfolio_user_count": 123,
    "platforms": {},
    "links": {
      "@type": "@coingecko_links",
      "homepage": "<string>",
      "whitepaper": "<string>",
      "blockchain_site": [],
      "official_forum_url": [],
      "repos_url": [],
      "subreddit_url": "<string>",
      "twitter_screen_name": "<string>",
      "telegram_channel_identifier": "<string>",
      "facebook_username": "<string>"
    },
    "market_data": {
      "@type": "@coingecko_market_data",
      "current_price": 123,
      "market_cap": 123,
      "market_cap_rank": 123,
      "fully_diluted_valuation": 123,
      "total_volume": 123,
      "high_24h": 123,
      "low_24h": 123,
      "price_change_24h": 123,
      "price_change_percentage_1h": 123,
      "price_change_percentage_24h": 123,
      "price_change_percentage_7d": 123,
      "price_change_percentage_14d": 123,
      "price_change_percentage_30d": 123,
      "price_change_percentage_60d": 123,
      "price_change_percentage_200d": 123,
      "price_change_percentage_1y": 123,
      "market_cap_change_24h": 123,
      "market_cap_change_percentage_24h": 123,
      "ath": 123,
      "ath_change_percentage": 123,
      "ath_date": "<string>",
      "atl": 123,
      "atl_change_percentage": 123,
      "atl_date": "<string>",
      "total_value_locked": 123,
      "circulating_supply": 123,
      "total_supply": 123,
      "max_supply": 123,
      "last_updated": "<string>"
    },
    "community_data": {
      "@type": "@coingecko_community_data",
      "twitter_follower_count": 123,
      "reddit_subscriber_count": 123,
      "reddit_average_posts_48h": 123,
      "reddit_average_comments_48h": 123,
      "reddit_accounts_active_48h": 123,
      "telegram_channel_user_count": 123
    },
    "developer_data": {
      "@type": "@coingecko_developer_data",
      "fork_count": 123,
      "star_count": 123,
      "subscriber_count": 123,
      "total_issue_count": 123,
      "closed_issue_count": 123,
      "pull_requests_merged_count": 123,
      "pull_request_contributor_count": 123,
      "commit_count_4_weeks": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
coin
string
required

Coin id (not the ticker symbol). Resolve a symbol or name to an id via the search endpoint

Minimum string length: 1
Examples:

"bitcoin"

"ethereum"

"solana"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
symbol
string
required
name
string
required
@type
string
default:@coingecko_coin
alias
string | null
image
string | null
description
string | null
categories
string[]
market_cap_rank
integer | null
hashing_algorithm
string | null
genesis_date
string | null
country_origin
string | null
sentiment_votes_up_percentage
number | null
sentiment_votes_down_percentage
number | null
watchlist_portfolio_user_count
integer | null
platforms
Platforms · object
market_data
CoingeckoMarketData · object
community_data
CoingeckoCommunityData · object
developer_data
CoingeckoDeveloperData · object